├── .env.example ├── .gitignore ├── README.md ├── bash_mlh.sh ├── main.py ├── requirements.txt └── scrapping-games.py /.env.example: -------------------------------------------------------------------------------- 1 | BOT_TOKEN="" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neufal777/telegram-bot-mlh/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neufal777/telegram-bot-mlh/HEAD/README.md -------------------------------------------------------------------------------- /bash_mlh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neufal777/telegram-bot-mlh/HEAD/bash_mlh.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neufal777/telegram-bot-mlh/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neufal777/telegram-bot-mlh/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrapping-games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neufal777/telegram-bot-mlh/HEAD/scrapping-games.py --------------------------------------------------------------------------------