No description
Find a file
2020-05-04 01:08:14 +03:00
tg correctly proccess sending msgs 2020-05-04 01:08:14 +03:00
.gitignore correctly handle situation when there are chats with all deleted msgs 2020-05-03 21:44:54 +03:00
pyproject.toml Reorganize structure of the project 2019-02-20 19:15:43 +01:00
README.md Add usage instructions in README 2020-05-02 20:47:25 +08:00
UNLICENSE Reorganize structure of the project 2019-02-20 19:15:43 +01:00

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 and API_HASH is keys from telegram
  • PHONE 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

Usefull links to help develop this project.