Python API for the tdlib library. It helps you build your own Telegram clients.
tdlib connects to Telegram over MTProto, the same protocol the official apps use.
This library signs in as a full Telegram account with a phone number, and it can do what a regular client can do.
It is not a wrapper around the HTTP Bot API.
If you only need a bot, python-telegram-bot is a better fit.
You can still sign in as a bot here by passing bot_token instead of phone.
This library requires Python 3.10+ and Linux or MacOS. Windows is not supported.
pip install python-telegramSee documentation for more details.
python-telegram comes with a precompiled tdlib library for Linux and MacOS. But it is highly recommended to compile it yourself.
The precompiled library may not work on some systems, it is dynamically linked and requires specific versions of additional libraries.
If you installed tdlib system-wide, python-telegram finds it automatically.
Otherwise, pass the path to the compiled library. The file is called libtdjson.so on Linux and libtdjson.dylib on MacOS:
tg = Telegram(
# ...
library_path="/usr/local/lib/libtdjson.so",
)This library has a docker image:
docker run -i -t --rm \
-v /tmp/docker-python-telegram/:/tmp/ \
akhmetov/python-telegram \
python3 /app/examples/send_message.py $API_ID $API_HASH $PHONE $CHAT_ID $TEXTFirst, register a new Telegram application to get your api_id and api_hash.
Check out the tutorial for more details.
Basic example:
from telegram.client import Telegram
from telegram.text import Spoiler
tg = Telegram(
api_id=123456,
api_hash="api_hash",
phone="+31611111111", # you can pass 'bot_token' instead
database_encryption_key="changekey123",
files_directory="/tmp/.tdlib_files/",
)
tg.login()
# The chat must be in the tdlib database before you can send a message to it.
# `get_chats` loads up to `limit` chats from the main chat list.
result = tg.get_chats(limit=100)
result.wait()
chat_id = 123456789
result = tg.send_message(chat_id, Spoiler("Hello world!"))
# `tdlib` is asynchronous, so `python-telegram` always returns an `AsyncResult` object.
# You can receive a result with the `wait` method of this object.
result.wait()
print(result.update)
tg.stop() # You must call `stop` at the end of the script.You can also use call_method to call any tdlib method:
tg.call_method("getUser", params={"user_id": user_id})More examples can be found in the /examples/ directory.
More information is available in the documentation.
See CONTRIBUTING.md.