├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── img ├── logger.png ├── main.png └── tg-logo.png ├── main.py ├── requirements.txt ├── setup.py └── webhook.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter18/telegram-bot-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter18/telegram-bot-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn main:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter18/telegram-bot-template/HEAD/README.md -------------------------------------------------------------------------------- /img/logger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter18/telegram-bot-template/HEAD/img/logger.png -------------------------------------------------------------------------------- /img/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter18/telegram-bot-template/HEAD/img/main.png -------------------------------------------------------------------------------- /img/tg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter18/telegram-bot-template/HEAD/img/tg-logo.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter18/telegram-bot-template/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | Flask 3 | werkzeug 4 | sslcrypto 5 | pyTelegramBotAPI 6 | datetime 7 | tg-logger 8 | pytz -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter18/telegram-bot-template/HEAD/setup.py -------------------------------------------------------------------------------- /webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter18/telegram-bot-template/HEAD/webhook.py --------------------------------------------------------------------------------