├── .deepsource.toml ├── .gitignore ├── LICENSE ├── README.md ├── main.py ├── requirements.txt └── scrapers.py /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keethesh/UdemyCourseGrabber/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /geckodriver.log 2 | /venv 3 | !/output.csv 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keethesh/UdemyCourseGrabber/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keethesh/UdemyCourseGrabber/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keethesh/UdemyCourseGrabber/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm 2 | lxml 3 | aiohttp[speedups] 4 | validators 5 | pyperclip -------------------------------------------------------------------------------- /scrapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keethesh/UdemyCourseGrabber/HEAD/scrapers.py --------------------------------------------------------------------------------