AN
andprov/bot_car_number
Telegram bot
bot_car_number
Description
Telegram bot for notifying car owners
Quickstart
Create bot and get token
https://core.telegram.org/bots#how-do-i-create-a-bot
Clone the repository
git clone <https or SSH URL>
cd <repository_name>Configure environment
Create and edit .env file from the .env.example
cp .env.example .envCreate PostgreSQL database
createdb -U postgres -h localhost -p 5432 bot_car_numberInstallation and run (Choose one method)
pip
# Create and activate virtual environment
python3.12 -m venv .venv
source .venv/bin/activate
# Install dependencies
pip install -e .
# Export environment variables
export $(grep -v '^#' .env | xargs)
# Run migrations
alembic upgrade head
# Run app
python -m bot_car_numberuv
# Create and activate virtual environment
uv venv
source .venv/bin/activate
# Install dependencies
uv sync
# Export environment variables
export $(grep -v '^#' .env | xargs)
# Run migrations
alembic upgrade head
# Run app
uv run python -m bot_car_numberOn this page
Languages
Python98.8%Mako0.9%Dockerfile0.2%
Contributors
MIT License
Created November 23, 2023
Updated November 18, 2025
