Skip to content

gersonfreire/telegram-bot-framework

Repository files navigation

Bot logo

Telegram Bot Framework

Status License


🤖 Application-level library for building bots in Telegram.

Project's Telegram group

Demo Bot

📝 Table of Contents

About

You can find many libraries and modules ready to build bots on Telegram, but none of them cover the basic functionalities that are almost indispensable, such as creating a help menu automatically from commands, registering users, generating a log in the Telegram administrator and others. The purpose of this library is to fill these gaps and allow Telegram bot developers to quickly create powerful, stable and secure bots in just a few lines of code. This work is still in its early stages, but I invite you to help me explore and conquer the fascinating world of Telegram bots by collaborating and using this library.

How it works

Basically, we build a class called TlgBotFwk, which inherits from the Application class, implemented by the telegram.ext library, provided by the python-telegram-bot package, version 21 or greater (https://github.com/python-telegram-bot/python-telegram-bot). In this child class, we implement some default methods to handle the universal commands /start, /help and other unrecognized commands. However, the developer can implement their own command handlers without losing the built-in functionality. I recommend reading the source code for more details. I also recommend Python 3.12 version.

Usage

To use this class, just create a simple script with bellow lines of code and the bot will run:

if __name__ == '__main__':
  
    app = TlgBotFwk()  
    app.run()

Don´t forget to create a .env file, because the framework will load settings like Telegram Token and Admin user Id from it. You will find a sample.env file on project root, with this content, which could be got as explained bellow

DEFAULT_BOT_TOKEN=<PUT YOUR BOT TOKEN HERE> 
DEFAULT_BOT_OWNER=<PUT HERE YOUR TELEGRAM ID> 

To get a Telegram bot token from BotFather to use in a Python bot script, follow these steps:

  1. Start a Chat with BotFather :
  • Open Telegram and search for “BotFather”.
  • Start a conversation by clicking the “Start” button.
  1. Create a New Bot :
  • Type /newbot and send the message.
  • BotFather will ask for a name for your bot. Choose a name that ends with “Bot”, like “MyAwesomeBot”.
  1. Choose a Username :
  • After naming the bot, BotFather will ask for a unique username for your bot. It must end in “bot” (e.g., AwesomeBot or MyAwesomeBot_bot).
  1. Receive the Token :
  • Once you’ve provided a valid username, BotFather will generate a token for your bot.
  • The token will look something like 123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11.
  1. Save the Token :
  • This token is essential for accessing the Telegram Bot API. Copy and save it somewhere secure, as you’ll need it to authenticate your bot in your Python script.
  1. Using the Token in .env :
  • In your .env file, you can use this token replacing it on <PUT YOUR BOT TOKEN HERE>.

To get your telegram Id and replace <PUT YOUR TELEGRAM ID HERE>, follow these steps:

Start a Chat with a Bot that Reveals User ID :

  • Search for a bot like userinfobot or any other similar bot in Telegram.
  • Start the chat by clicking "Start."
  • Get the number after "Id:" and replace it on .env

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

What things you need to install the software and how to install them.

-A Python IDE like VS Code or PyCharm (I recommend VS Code)
-Local Python 3.12 or above installed
-pip 24 or above installed

Installing

Clone this entire repository

git clone https://github.com/gersonfreire/tlgfwk.git

Install dependencies

pip -r requirements.txt

Run main function of base class

python tlgfwk.py

TODOs:

  • Last Stable Version: 0.7.4
  • Deploy a demo instance - Bot running on Demo Bot
  • Add handlers to telegram menu commands ✓
  • Auto-update by git pull ✓
  • Command to restart the bot ✓
  • Encrypt/decrypt the bot token from/to .env file ✓
  • Optional disable_encryption parameter on class creation to Encrypt/decrypt .env file ✓
  • Create an empty .env file at run time if it does not exist ✓
  • Ask the bot owner to input a token in case the token is not valid ✓
  • Encrypt .env fixed ✓
  • Show start message at bot start to owner ✓
  • Create a show bot configuration command ✓
  • Version command ✓
  • Add admin users manage commands ✓
  • Delete admin users ✓
  • Added command to manage useful links like the Github repository of Bot ✓
  • Create a direct, no-running, synchronous send message method with an optional telegram bot token ✓
  • Moved util modules to internal folders ✓
  • Save admin list to .env ✓
  • Making bot persistant from the base class ✓
  • List of admin users ids with same owner privileges ✓
  • Sort help comands alphabetically
  • Admin command to show environment variables ✓
  • Admin command to show a .pickle file content ✓
  • Admin command to show users from persistence file ✓
  • Command to load plugin system ✓
  • Plugin system ✓
  • Show to admin user which commands is common or admin ✓
  • Initialize a minimum balance for new users
  • Set last message date for all commands
  • Add a command to manage user's balance
  • Load just a specified plugin
  • Paging for messages longer than 4096 characters
  • Stripe integration
  • Create a command decorator
  • Users management
  • Show embedded help html page
  • Create a command to encrypt and decrypt strings
  • Add a way to save the bot token for next run
  • Add persistence for user and bot data
  • Allow more than one owner
  • Logger to Telegram

Authors

Engage yourself entering the Project's Telegram group and see also the list of contributors who participated in this project Please, feel free to join us and let´s build a full and powerfull real framework for bots.