├── .deepsource.toml ├── .gitattributes ├── .gitignore ├── Ine.py ├── LICENSE ├── README.md └── requirements.txt /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayapraveen/INE-courses-downloader/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayapraveen/INE-courses-downloader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayapraveen/INE-courses-downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /Ine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayapraveen/INE-courses-downloader/HEAD/Ine.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayapraveen/INE-courses-downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayapraveen/INE-courses-downloader/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm 2 | requests --------------------------------------------------------------------------------