├── .gitignore ├── Procfile ├── README.md ├── bot.py ├── data.json ├── images ├── chat_with_botfather.png ├── pycharm_package.png └── pycharm_var.png ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijingcheng/telegram-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python bot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijingcheng/telegram-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijingcheng/telegram-bot/HEAD/bot.py -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijingcheng/telegram-bot/HEAD/data.json -------------------------------------------------------------------------------- /images/chat_with_botfather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijingcheng/telegram-bot/HEAD/images/chat_with_botfather.png -------------------------------------------------------------------------------- /images/pycharm_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijingcheng/telegram-bot/HEAD/images/pycharm_package.png -------------------------------------------------------------------------------- /images/pycharm_var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijingcheng/telegram-bot/HEAD/images/pycharm_var.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-telegram-bot==12.4.2 2 | schedule==0.6.0 -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.6 --------------------------------------------------------------------------------