├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── requirements.txt └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufte/python-telegram-bot-openshift/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufte/python-telegram-bot-openshift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufte/python-telegram-bot-openshift/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufte/python-telegram-bot-openshift/HEAD/bot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | python-telegram-bot 3 | -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufte/python-telegram-bot-openshift/HEAD/wsgi.py --------------------------------------------------------------------------------