├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── currency_crawler.py ├── db_functions.py ├── requirements.txt └── telegram_bot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shri4r/arz-telegram-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shri4r/arz-telegram-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shri4r/arz-telegram-bot/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- 1 | TOKEN = "Paste your bot token here" 2 | -------------------------------------------------------------------------------- /currency_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shri4r/arz-telegram-bot/HEAD/currency_crawler.py -------------------------------------------------------------------------------- /db_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shri4r/arz-telegram-bot/HEAD/db_functions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shri4r/arz-telegram-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shri4r/arz-telegram-bot/HEAD/telegram_bot.py --------------------------------------------------------------------------------