mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[udemy:course] Simplify course curriculum downloading
This commit is contained in:
parent
41d06b0424
commit
6bb4600717
@ -322,17 +322,14 @@ class UdemyCourseIE(UdemyIE):
|
||||
|
||||
self._enroll_course(url, webpage, course_id)
|
||||
|
||||
course_url = update_url_query(
|
||||
response = self._download_json(
|
||||
'https://www.udemy.com/api-2.0/courses/%s/cached-subscriber-curriculum-items' % course_id,
|
||||
{
|
||||
course_id, 'Downloading course curriculum', query={
|
||||
'fields[chapter]': 'title,object_index',
|
||||
'fields[lecture]': 'title',
|
||||
'page_size': '1000',
|
||||
})
|
||||
|
||||
response = self._download_json(
|
||||
course_url, course_id, 'Downloading course curriculum')
|
||||
|
||||
entries = []
|
||||
chapter, chapter_number = [None] * 2
|
||||
for entry in response['results']:
|
||||
|
Loading…
Reference in New Issue
Block a user