Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 678 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 678 Bytes

Scrape mate courses

Task

Get list of all courses on the landing page of mate.academy website. Each course should have name, short_description and duration. The structure of class is already implemented in app/parse.py. So your task is to implement get_all_courses function to parse all these courses.

Hints:

  • Make your code DRY, KISS and follow SRP principle (single-responsibility).
  • Implement the simplest solution you could find.

Optional task:

Also get info about count of modules and count of topics.