├── .gitattributes ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── requirements.txt └── udemy ├── __init__.py ├── __main__.py ├── bot ├── __init__.py └── bot.py └── duce ├── __init__.py └── duce.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/UdemyBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/UdemyBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/UdemyBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m udemy -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/UdemyBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/UdemyBot/HEAD/app.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | telethon 3 | cryptg 4 | BeautifulSoup4 5 | bs4 6 | html5lib -------------------------------------------------------------------------------- /udemy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/UdemyBot/HEAD/udemy/__init__.py -------------------------------------------------------------------------------- /udemy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/UdemyBot/HEAD/udemy/__main__.py -------------------------------------------------------------------------------- /udemy/bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/UdemyBot/HEAD/udemy/bot/__init__.py -------------------------------------------------------------------------------- /udemy/bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/UdemyBot/HEAD/udemy/bot/bot.py -------------------------------------------------------------------------------- /udemy/duce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/UdemyBot/HEAD/udemy/duce/__init__.py -------------------------------------------------------------------------------- /udemy/duce/duce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/UdemyBot/HEAD/udemy/duce/duce.py --------------------------------------------------------------------------------