├── .gitignore ├── LICENSE ├── README.md ├── mycoursesdownloader.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volfco/MyCoursesDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volfco/MyCoursesDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volfco/MyCoursesDownloader/HEAD/README.md -------------------------------------------------------------------------------- /mycoursesdownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volfco/MyCoursesDownloader/HEAD/mycoursesdownloader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | BeautifulSoup4 2 | requests 3 | halo 4 | tqdm 5 | loguru --------------------------------------------------------------------------------