Skip to main content

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:

  1. the latest Python version with following libraries:
  2. a bot token from BotFather

Currently supported:

  • sending and receiving messages, images, audio, video and documents
  • polls
  • 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

Future plans:

  • download images, audio, video and documents
  • add more media and interactable features (like voice, dices, media groups, locations and contacts)
  • proper method for turning keyboards to a json-string
  • get chat information and set chat attributes (like chat photo and description)
  • forward messages
  • improve "single-chat mode"
  • add time delay between requests and use timeout features
  • propper 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 can will occur! If you found one, please open an issue :)
  • This code is FREE to use! YEYY!

About Me:

  • software-engineering student from Germany (3rd semester)
  • 2-3 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

b4t-python-telegram-bot-1.1.1.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

b4t_python_telegram_bot-1.1.1-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file b4t-python-telegram-bot-1.1.1.tar.gz.

File metadata

  • Download URL: b4t-python-telegram-bot-1.1.1.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for b4t-python-telegram-bot-1.1.1.tar.gz
Algorithm Hash digest
SHA256 5b61831c2ccea9ffba433c61ee5492d944bd73cf6fdc502880dfa497cce064cd
MD5 7587c762ff2c367fd9e078190e79f329
BLAKE2b-256 131f591afa704ba1909cdc3f7a6ba17814af24a0146a660db95dd73a10dcd629

See more details on using hashes here.

File details

Details for the file b4t_python_telegram_bot-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: b4t_python_telegram_bot-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for b4t_python_telegram_bot-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6c2bb6c12f1c3df3c56f9af3dc00e4bf0e2dc8976605faabac7ae6a680d74ac3
MD5 07af6a8586e4d5750b86c030231c3f28
BLAKE2b-256 cbc92f29e6ca000202211f47058e5fe8bf3d2ff7802c7ecd7e9e992828551d53

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page