mirror of
https://github.com/paul-nameless/tg
synced 2024-11-22 11:53:08 +00:00
942 B
942 B
tg
Console telegram client.
(!) currently in development
Usage
Clone repository. Run this command.
docker run -i -t --rm \
-v /tmp/docker-python-telegram/:/tmp/ \
-e API_ID=[id]
-e API_HASH=[hash]
-e PHONE=[phone] \
-e PYTHONPATH=/app -v $PWD:/app \
akhmetov/python-telegram python3 /app/tg/main.py
Where:
APP_ID
andAPI_HASH
is keys from telegramPHONE
your phone number (or login)
If you don't want to run it using docker, install tdlib
and python-telegram
For example, macOS:
brew install tdlib
pip3 install python-telegram
Links
Usefull links to help develop this project.
- tdlib python wrapper: https://github.com/alexander-akhmetov/python-telegram
- tdlib official repo: https://github.com/tdlib/td/tree/master/example#python
- Build tdlib instructions: https://tdlib.github.io/td/build.html?language=Python