├── .gitignore ├── .vscode └── settings.json ├── Procfile ├── README.md ├── app.py ├── assets ├── bot.gif ├── createbot.png └── heroku-url.png ├── requirements.txt └── telebot ├── __init__.py ├── credentials.py └── mastermind.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAbdelaal/telegram-bot-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAbdelaal/telegram-bot-tutorial/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAbdelaal/telegram-bot-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAbdelaal/telegram-bot-tutorial/HEAD/app.py -------------------------------------------------------------------------------- /assets/bot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAbdelaal/telegram-bot-tutorial/HEAD/assets/bot.gif -------------------------------------------------------------------------------- /assets/createbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAbdelaal/telegram-bot-tutorial/HEAD/assets/createbot.png -------------------------------------------------------------------------------- /assets/heroku-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAbdelaal/telegram-bot-tutorial/HEAD/assets/heroku-url.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAbdelaal/telegram-bot-tutorial/HEAD/requirements.txt -------------------------------------------------------------------------------- /telebot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /telebot/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAbdelaal/telegram-bot-tutorial/HEAD/telebot/credentials.py -------------------------------------------------------------------------------- /telebot/mastermind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAbdelaal/telegram-bot-tutorial/HEAD/telebot/mastermind.py --------------------------------------------------------------------------------