mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-28 05:01:49 +00:00
Fixed flake8 errors.
This commit is contained in:
parent
d3e980eaa5
commit
a4737bb755
1 changed files with 9 additions and 8 deletions
|
@ -7,6 +7,7 @@ import re
|
|||
CONTENT_DIR = r'/content/kids/'
|
||||
DOMAIN = r'kankids.org.il'
|
||||
|
||||
|
||||
class KanKidsIE(InfoExtractor):
|
||||
_VALID_URL = r'https?://(?:www\.)?' +\
|
||||
DOMAIN.replace('.', '\.') + CONTENT_DIR +\
|
||||
|
@ -18,7 +19,7 @@ class KanKidsIE(InfoExtractor):
|
|||
'_type': 'playlist',
|
||||
'id': 'p-11732',
|
||||
'title': 'בית ספר לקוסמים',
|
||||
},
|
||||
},
|
||||
'playlist_count': 60,
|
||||
},
|
||||
{
|
||||
|
@ -27,17 +28,17 @@ class KanKidsIE(InfoExtractor):
|
|||
'_type': 'playlist',
|
||||
'id': 'cramel_main',
|
||||
'title': 'כראמל - עונה 1',
|
||||
},
|
||||
},
|
||||
'playlist_count': 21,
|
||||
},
|
||||
]
|
||||
]
|
||||
|
||||
def _real_extract(self, url):
|
||||
m = super()._match_valid_url(url)
|
||||
series_id = m.group('id')
|
||||
category = m.group('category')
|
||||
playlist_season = m.group('season')
|
||||
|
||||
|
||||
webpage = self._download_webpage(url, series_id)
|
||||
|
||||
title_pattern = r'<title>(?P<title>.+) \|'
|
||||
|
@ -54,8 +55,8 @@ class KanKidsIE(InfoExtractor):
|
|||
series_id + r'/' + # Series
|
||||
season + r'/' + # Season
|
||||
r'(?P<id>[0-9]+)/"' + # Episode
|
||||
r'.+title="(?P<title>.+)"' # Title
|
||||
, webpage))
|
||||
r'.+title="(?P<title>.+)"', # Title
|
||||
webpage))
|
||||
|
||||
entries = []
|
||||
content_dir = r'https://www.' + DOMAIN + content_dir
|
||||
|
@ -65,12 +66,12 @@ class KanKidsIE(InfoExtractor):
|
|||
ie='Generic',
|
||||
video_id=video_id,
|
||||
video_title=title,
|
||||
))
|
||||
))
|
||||
|
||||
return {
|
||||
'_type': 'playlist',
|
||||
'id': series_id,
|
||||
'title': series_title,
|
||||
'entries': entries,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue