mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
6b8a347426
README.md was updated to reflect more useful information More errors from the official Telegrm website have been added MtProtoSender now handles updates (and doesn't crash!) Fixes on TcpClient to be able to receive whole large packets Updated scheme.tl to the layer 55 Session is now saved more often (to prevent damages from crashes) Fixes to the code generator (generated invalid code for reading "bytes")
27 lines
937 B
Python
Executable File
27 lines
937 B
Python
Executable File
import tl_generator
|
|
from tl.telegram_client import TelegramClient
|
|
from utils.helpers import load_settings
|
|
|
|
|
|
if __name__ == '__main__':
|
|
if not tl_generator.tlobjects_exist():
|
|
print('Please run `python3 tl_generator.py` first!')
|
|
|
|
else:
|
|
settings = load_settings()
|
|
client = TelegramClient(session_user_id=settings.get('session_name', 'anonymous'),
|
|
layer=55,
|
|
api_id=settings['api_id'],
|
|
api_hash=settings['api_hash'])
|
|
|
|
client.connect()
|
|
input('You should now be connected. Press enter when you are ready to continue.')
|
|
if not client.is_user_authorized():
|
|
client.send_code_request(str(settings['user_phone']))
|
|
|
|
code = input('Enter the code you just received: ')
|
|
client.make_auth(settings['user_phone'], code)
|
|
|
|
else:
|
|
client.get_dialogs()
|