1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-11-24 19:22:06 +00:00

flake8 fixes for la1ere extractor

This commit is contained in:
nicole trinity 2024-07-29 16:31:08 -04:00
parent d933a0ef76
commit 8b8d196f65

View file

@ -26,7 +26,7 @@ class La1ereExrtractorBaseIE(InfoExtractor):
playlist_url = auth_request['url'] playlist_url = auth_request['url']
return video_id, playlist_url return video_id, playlist_url
class La1ereExtractorPageIE(La1ereExrtractorBaseIE): class La1ereExtractorPageIE(La1ereExrtractorBaseIE):
_VALID_URL = r'https://la1ere.francetvinfo.fr/(?P<region>[^/]+)/programme-video/diffusion/(?P<page>[^\.]+).html' _VALID_URL = r'https://la1ere.francetvinfo.fr/(?P<region>[^/]+)/programme-video/diffusion/(?P<page>[^\.]+).html'
_TEST = { _TEST = {
@ -44,7 +44,7 @@ class La1ereExtractorPageIE(La1ereExrtractorBaseIE):
title = self._html_search_regex(r'<h1 .*title.*>(.+?)</h1>', webpage, 'title') title = self._html_search_regex(r'<h1 .*title.*>(.+?)</h1>', webpage, 'title')
video_id, playlist_url = self._extract_given_title(webpage, title) video_id, playlist_url = self._extract_given_title(webpage, title)
# get the mpd playlist # get the mpd playlist
formats = self._extract_m3u8_formats(playlist_url, video_id) formats = self._extract_m3u8_formats(playlist_url, video_id)
@ -53,7 +53,8 @@ class La1ereExtractorPageIE(La1ereExrtractorBaseIE):
'title': title, 'title': title,
'formats': formats, 'formats': formats,
} }
class La1ereExtractorShowPageIE(La1ereExrtractorBaseIE): class La1ereExtractorShowPageIE(La1ereExrtractorBaseIE):
_VALID_URL = r'https://la1ere.francetvinfo.fr/(?P<region>[^/]+)/programme-video/(?P<show>[^/]+)/diffusion/(?P<page>[^\.]+).html' _VALID_URL = r'https://la1ere.francetvinfo.fr/(?P<region>[^/]+)/programme-video/(?P<show>[^/]+)/diffusion/(?P<page>[^\.]+).html'
_TEST = { _TEST = {
@ -64,7 +65,7 @@ class La1ereExtractorShowPageIE(La1ereExrtractorBaseIE):
'title': '13H en Guadeloupe - Émission du lundi 29 janvier 2024', 'title': '13H en Guadeloupe - Émission du lundi 29 janvier 2024',
} }
} }
def _real_extract(self, url): def _real_extract(self, url):
webpage = self._download_webpage(url, 'la1ere') webpage = self._download_webpage(url, 'la1ere')
@ -73,7 +74,7 @@ class La1ereExtractorShowPageIE(La1ereExrtractorBaseIE):
title = f'{series_name} - {episode_name}' title = f'{series_name} - {episode_name}'
video_id, playlist_url = self._extract_given_title(webpage, title) video_id, playlist_url = self._extract_given_title(webpage, title)
# get the m3u8 playlist # get the m3u8 playlist
formats = self._extract_m3u8_formats(playlist_url, video_id) formats = self._extract_m3u8_formats(playlist_url, video_id)
@ -82,4 +83,3 @@ class La1ereExtractorShowPageIE(La1ereExrtractorBaseIE):
'title': title, 'title': title,
'formats': formats, 'formats': formats,
} }