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.
- 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
-
Clone the repository:
git clone https://github.com/NoBodyEver99/aiogram-bot-template.git cd aiogram-bot-template
-
Create a virtual environment and activate it:
python -m venv venv source venv/bin/activate # for Windows use `venv\Scripts\activate`
-
Install dependencies:
pip install -r requirements.txt
-
Create .env and configure environment variables, use .env.example as a reference:
cp .env.example .env
-
initialize Aerich:
aerich init -t config.TORTOISE_ORM
-
Create the first migration and apply it:
aerich init-db
-
Run the bot:
python start.py
- 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.
If you have any questions or problems with the project, please create an issue on GitHub.
This project is licensed under the terms of the MIT license. See the LICENSE file for details.