Simple and lightweight Telegram Bot
Project description
Brain4Tech Python Telegram Bot
A simple and lightweight Python Telegram Bot with a small range of functionalities using the Telegram Bot API
Installation with pip: pip install b4t-python-telegram-bot
Requirements:
- the latest Python version with following libraries:
- requests (
pip install requests
)
- requests (
- a bot token from BotFather
Currently supported:
- sending and receiving messages, images, audio, video and documents (silently)
- polls (single time or until valid update)
- inline- and keyboardbuttons
- callback-queries
- bot-commands
- "single-chat mode": bot is only active in one single chat/group/channel
- "return-on-update-only mode": bot only returns a value when it receives a valid update
- new chat members
- ban, unban or kick members from group-like chats
- restrict members in group-like chats
- get information about chat members
- edit messages
- MarkdownV2-formatting
Future plans:
- download images, audio, video and documents
- add more media and interactable features (like voice, dices, media groups, locations and contacts)
- get chat information and set chat attributes (like chat photo and description)
- forward messages
- reply to messages
- improve "single-chat mode"
- add time delay between requests and use timeout features
- improve Markdown formatting support
- documentation
How it works:
The bot frequently sends a request to the telegram server and gets a response. If there is usable content within the response (i.e. someone send a message to the bot or into a group where the bot is a group member of) it parses the response into a custom datastructure ( = classes, lol) which the programmer gets in return to work with. The structure of the returned class is the same as Telegram sends the response, which means you can get your needed information like you can see here. Example: I want to know what the content is of the message I just received:
from telegram_bot import TelegramBot
bot = TelegramBot ("<insert your bot_token here>")
response = bot.poll()
if response:
message = response.message.text
Easy! You can also check if your response is a message or (for example) an incoming command or a callback from an inline-keyboard:
[see above]
if response:
if response.isMessage():
# do stuff here
elif response.isCallback():
# do other stuff here
elif response.isBotCommand():
# you know what's coming...
Check the Update-class in telegram_bot/updates.py for more. It's pretty self explaining.
Good-to-know:
- the codebase is still in development.
- Mistakes and Bugs
canwill occur! If you found one, please open an issue :) - This code is FREE to use! YEYY!
About Me:
- software-engineering student from Germany (4th semester)
- 3-4 years of Python experience
- I've been studying the Telegram Bot API for 1 1/2 years and released small scripts in my other repository. Unfortunately that coding style is unusable for bigger projects so I decided to create an own little library for future projects and other people who want to learn the Telegram Bot API without going through the pain I've been going through.
- beginner at GitHub and publishing code.
- English is obviously not my first language
Feel free to make a pull request and help me making this repository beginner- and userfriendly!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file b4t-python-telegram-bot-1.3.0.tar.gz
.
File metadata
- Download URL: b4t-python-telegram-bot-1.3.0.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42e99d0f144d8b7648dfa8ec598add22c896205ec38449becdb6f24806d040e6 |
|
MD5 | 981b458e384428d749f83fef37ba67e1 |
|
BLAKE2b-256 | c4f44b99adf7b5f39bfb0aa8ba131726bdc681658cd3b4beb135e49e76f026ec |
File details
Details for the file b4t_python_telegram_bot-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: b4t_python_telegram_bot-1.3.0-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c193771cf114df83aefcc1d76fda8500fdfcedcfb8dba9a3751f4ccf3d34ebbb |
|
MD5 | 71976204ecf3c7e795433b7e9bcc4b66 |
|
BLAKE2b-256 | 0614fe832d92bf814b51f04895f57f452d7c27d77dcb60a013b4328645e52a98 |