Telethon/telethon_examples/print_updates.py

37 lines
966 B
Python
Raw Normal View History

#!/usr/bin/env python3
# A simple script to print all updates received
from os import environ
2018-02-16 23:02:47 +03:00
# environ is used to get API information from environment variables
# You could also use a config file, pass them as arguments,
# or even hardcode them (not recommended)
from telethon import TelegramClient
2018-02-16 23:02:47 +03:00
def main():
session_name = environ.get('TG_SESSION', 'session')
client = TelegramClient(session_name,
int(environ['TG_API_ID']),
environ['TG_API_HASH'],
proxy=None,
2018-02-16 23:02:47 +03:00
update_workers=4,
spawn_read_thread=False)
if 'TG_PHONE' in environ:
client.start(phone=environ['TG_PHONE'])
else:
client.start()
client.add_update_handler(update_handler)
2018-02-16 23:02:47 +03:00
print('(Press Ctrl+C to stop this)')
client.idle()
def update_handler(update):
print(update)
2018-02-16 23:02:47 +03:00
if __name__ == '__main__':
main()