Telethon/try_telethon.py

54 lines
1.6 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2018-06-24 13:04:23 +03:00
import asyncio
import traceback
2016-11-30 00:29:42 +03:00
from telethon_examples.interactive_telegram_client \
import InteractiveTelegramClient
def load_settings(path='api/settings'):
"""Loads the user settings located under `api/`"""
2017-05-21 14:59:16 +03:00
result = {}
with open(path, 'r', encoding='utf-8') as file:
for line in file:
value_pair = line.split('=')
left = value_pair[0].strip()
right = value_pair[1].strip()
if right.isnumeric():
2017-05-21 14:59:16 +03:00
result[left] = int(right)
else:
2017-05-21 14:59:16 +03:00
result[left] = right
2017-05-21 14:59:16 +03:00
return result
if __name__ == '__main__':
# Load the settings and initialize the client
settings = load_settings()
kwargs = {}
if settings.get('socks_proxy'):
import socks # $ pip install pysocks
host, port = settings['socks_proxy'].split(':')
kwargs = dict(proxy=(socks.SOCKS5, host, int(port)))
client = InteractiveTelegramClient(
session_user_id=str(settings.get('session_name', 'anonymous')),
user_phone=str(settings['user_phone']),
api_id=settings['api_id'],
api_hash=str(settings['api_hash']),
**kwargs)
print('Initialization done!')
2018-06-24 13:04:23 +03:00
loop = asyncio.get_event_loop()
try:
2018-06-24 13:04:23 +03:00
loop.run_until_complete(client.run())
except Exception as e:
2016-11-30 00:29:42 +03:00
print('Unexpected error ({}): {} at\n{}'.format(
type(e), e, traceback.format_exc()))
finally:
2018-06-24 13:04:23 +03:00
loop.run_until_complete(client.disconnect())
print('Thanks for trying the interactive example! Exiting...')