├── .github └── dependabot.yml ├── Procfile ├── README.md ├── bot.py ├── funding.json └── requirements.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dspytdao/Telegram_bot_py_heroku/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python3 bot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dspytdao/Telegram_bot_py_heroku/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dspytdao/Telegram_bot_py_heroku/HEAD/bot.py -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dspytdao/Telegram_bot_py_heroku/HEAD/funding.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dspytdao/Telegram_bot_py_heroku/HEAD/requirements.txt --------------------------------------------------------------------------------