Skip to content

Template for creating Telegram bots based on aiogram with support for asynchronous programming, database on Tortoise ORM, FSM storage on Redis and admin panel for bot management.

License

Notifications You must be signed in to change notification settings

NoBodyEver99/aiogram-bot-template

Repository files navigation

Aiogram Bot Template

License Python Version GitHub last commit

Description

This project is a template for creating bots on the Telegram platform using the aiogram framework. It includes a fully working administration panel with functions of statistics, mailing, channel management for mandatory subscription and UTM tags. The database is created automatically if it doesn't exist and user data is updated in the database if the user changes it in Telegram.

Features

  • Asynchronous bot using aiogram
  • Database support using Tortoise ORM and asyncpg
  • Database migrations using Aerich
  • Redis for caching and data storage
  • Logging using Loguru
  • Execution acceleration using uvloop
  • Configuration support via .env file
  • Fully working admin panel:
    • Statistics
    • Newsletter
    • Channel management for mandatory subscription
    • UTM tags

Installation

  1. Clone the repository:

    git clone https://github.com/NoBodyEver99/aiogram-bot-template.git
    cd aiogram-bot-template
  2. Create a virtual environment and activate it:

    python -m venv venv
    source venv/bin/activate # for Windows use `venv\Scripts\activate`
  3. Install dependencies:

    pip install -r requirements.txt
  4. Create .env and configure environment variables, use .env.example as a reference:

    cp .env.example .env

Usage

  1. initialize Aerich:

    aerich init -t config.TORTOISE_ORM
  2. Create the first migration and apply it:

    aerich init-db
  3. Run the bot:

    python start.py

Project structure

  • bot/: The directory with the main bot code.
  • .env.example: Configuration file.
  • db/: Directory with database initialization and models.
  • migrations/: Directory with database migrations.
  • newsletter/: Directory with newsletter functionality.
  • requirements.txt: List of project dependencies.
  • start.py: Script to start the bot.

Support

If you have any questions or problems with the project, please create an issue on GitHub.

License

This project is licensed under the terms of the MIT license. See the LICENSE file for details.

About

Template for creating Telegram bots based on aiogram with support for asynchronous programming, database on Tortoise ORM, FSM storage on Redis and admin panel for bot management.

Topics

Resources

License

Siteproxy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages