- Read the guideline before start
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 followSRP
principle (single-responsibility). - Implement the simplest solution you could find.
Also get info about count of modules
and count of topics
.