Einundzwanzig Community Telegram Bot
- Python 3.11+
- python-telegram-bot library
- A Telegram Bot token, can be retrieved from Bot Father
You can create a Python3 virtual environment using
python3 -m venv env # Install virtual environment
source env/bin/activate # Activate virtual environment
pip install -r requirements.txt # Install dependenciesMake sure your virtual environment is activated every time you run the bot.
You can get out of the virtual environment by running deactivate inside the environment.
Afterwards you can run the bot with
BOT_TOKEN=*** python src/main.pyThe bot will start up and automatically receive updates and respond to messages.
You can also use docker for local development and/or deployment, see the
Dockerfile and docker-compose.yml for details
If you want to set up a webhook for the bot you need to specify the following environment variables:
USE_WEBHOOKTrue if you want to use webhooksWEBHOOK_URLFQDN of the server (e.g. example.com, 8.8.8.8)WEBHOOK_PORTPort to use, can be any of 80, 88, 443, 8443
Make sure you create a self-signed certifcate first and place them in the root folder.
The key must be named private.key and the cert cert.pem.
If you are using docker, the certificate will be generated for you.
Have a look at the Dockerfile and docker-compose.yml for more details.