From 35585cf63627fae82ae0659752c48e3e588470f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Sun, 28 Feb 2021 21:39:55 +0100 Subject: basic one-on-one chat --- main.py | 35 +++++++++++++++++++++++++++++++++++ requirements.txt | 2 ++ 2 files changed, 37 insertions(+) create mode 100644 main.py create mode 100644 requirements.txt diff --git a/main.py b/main.py new file mode 100644 index 0000000..8ab18f2 --- /dev/null +++ b/main.py @@ -0,0 +1,35 @@ +import aioconsole +import logging +import telethon + +import credentials + +logging.basicConfig( + format='[%(levelname) 5s/%(asctime)s] %(name)s: %(message)s', + level=logging.WARNING +) +client = telethon.TelegramClient( + "first_test", + credentials.API_ID, + credentials.API_HASH +) + + +@client.on(telethon.events.NewMessage) +async def new_message(event): + print(event.raw_text) + + +async def send_lines(recipient): + while True: + line = await aioconsole.ainput() + await client.send_message(recipient, line) + + +async def main(): + await send_lines(recipient=input("Phone number to chat with: ")) + + +with client: + client.start() + client.loop.run_until_complete(main()) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..5bbbe19 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +aioconsole==0.3.1 +Telethon==1.20 -- cgit v1.2.1