Telegram bot for putting memes in a queue as media files or text and then sending those to your friend's chat. There is running bot that you can check out: @memefam_bot
- Language:
Python 3.10.4 - Wrapper for Telegram Bot API: python-telegram-bot
- Database:
SQLite3
First you need to set your env vars in Dockerfile:
TELEGRAM_BOT_TOKEN — token from @BotFather
TELEGRAM_GROUP_CHAT_ID — chat where you want to send memes anonymously. How to get it for your chat
Then you build docker image and run a container:
docker build -t tgbot-memeque .
docker run -d --name memeque -v /local_project_path/db:/app/db tgbot-memeque
For entering running container:
docker exec -it memeque bash