Telethon/telethon_examples
Lonami Exo 9cbc088b76 Make disconnect synchronous
This also fixes a bug when auto-reconnecting in MTProtoSender.
2018-10-16 11:56:17 +02:00
..
assistant.py Add inline mode to the assistant example 2018-10-12 13:33:55 +02:00
gui.py Make disconnect synchronous 2018-10-16 11:56:17 +02:00
interactive_telegram_client.py Update examples to make them easier to run 2018-09-04 11:52:18 +02:00
print_updates.py Update examples to make them easier to run 2018-09-04 11:52:18 +02:00
README.txt Update examples to make them easier to run 2018-09-04 11:52:18 +02:00
replier.py Update examples to make them easier to run 2018-09-04 11:52:18 +02:00

You should be able to run these files with python3 filename.py after
installing Telethon (`pip3 install .` on the root of the project if you
haven't installed it yet and you downloaded the repository).

Most of these examples assume you have the following variables defined
in your environment:

    TG_API_ID, this is the api ID of your Telegram application.
    TG_API_HASH, similarly, this is the api hash.
    TG_TOKEN, for bot examples, this should be the bot token.
    TG_SESSION, this is the session file name to be (re)used.

See https://superuser.com/q/284342 to learn how to define them.
It's more convenient to define them, but if you forget to do so,
the scripts will ask you to enter the variables when ran.