This module provides an interface for TelegramBot API
(https://core.telegram.org/bots/api)
Bots are small applications that use messages for a interface based into following a common pattern:
https://api.telegram.org/bot<token>/METHOD_NAME
where:
- Token: a unique ID given at the moment of the Bot creation
- METHOD_NAME: According with the desired action to applly, we need to call to the correspond method.
pip install -e .
python3 -c "import telegrambot; print("telegrambot.version")"
In this project, we support the following actions:
- Send and receive messages
- Send and receive pictures
- Send and receive audios
- Send and receive videos
Being the architecture diagram of sending actions:
and for receiving actions: