├── .gitignore ├── README.md ├── bot.py ├── modules ├── checker.py ├── myqueues.py └── ytdownloader.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHanza/TelegramYTDLBot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHanza/TelegramYTDLBot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHanza/TelegramYTDLBot/HEAD/bot.py -------------------------------------------------------------------------------- /modules/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHanza/TelegramYTDLBot/HEAD/modules/checker.py -------------------------------------------------------------------------------- /modules/myqueues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHanza/TelegramYTDLBot/HEAD/modules/myqueues.py -------------------------------------------------------------------------------- /modules/ytdownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHanza/TelegramYTDLBot/HEAD/modules/ytdownloader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHanza/TelegramYTDLBot/HEAD/requirements.txt --------------------------------------------------------------------------------