Formatting the code

This commit is contained in:
Dante 2020-04-08 16:33:29 -07:00
parent 35d7908d78
commit 3e9004cd8a

View File

@ -6,10 +6,12 @@ from .common import InfoExtractor
class MetrotvnewsIE(InfoExtractor): class MetrotvnewsIE(InfoExtractor):
_VALID_URL = r'https:\/\/www.metrotvnews\.com\/play\/(?P<id>\S+)-\S+' _VALID_URL = r'https:\/\/www.metrotvnews\.com\/play\/(?P<id>\S+)-\S+'
def _real_extract(self, url): def _real_extract(self, url):
video_id = self._match_id(url) video_id = self._match_id(url)
webpage = self._download_webpage( webpage = self._download_webpage(
@ -22,6 +24,7 @@ class MetrotvnewsIE(InfoExtractor):
r'(https:\/\/cdn01\.metrotvnews\.com\/videos\/\d+\/\d+\/\d+\/\S+.mp4)', r'(https:\/\/cdn01\.metrotvnews\.com\/videos\/\d+\/\d+\/\d+\/\S+.mp4)',
webpage, "download_url" webpage, "download_url"
) )
return { return {
'id': video_id, 'id': video_id,
'url': download_url, 'url': download_url,