Merge branch 'main' into feat/count_events

This commit is contained in:
callebtc
2023-02-07 23:07:56 +01:00
13 changed files with 384 additions and 409 deletions

11
main.py
View File

@@ -96,8 +96,9 @@ async def post():
sender_client.post(msg)
# write a DM and receive DMs
asyncio.run(dm())
# make a post and subscribe to posts
# asyncio.run(post())
if input("Enter 1 for DM, 2 for Posts (Default: 1)") or 1 == 1:
# write a DM and receive DMs
asyncio.run(dm())
else:
# make a post and subscribe to posts
asyncio.run(post())