From 165ce9f7738820fc0b662774d120149229c31ec1 Mon Sep 17 00:00:00 2001 From: nixxo Date: Wed, 28 Oct 2020 20:04:00 +0100 Subject: [PATCH] [gedi] removed unused tests, fixed extractor name --- youtube_dlc/extractor/gedi.py | 38 +---------------------------------- 1 file changed, 1 insertion(+), 37 deletions(-) diff --git a/youtube_dlc/extractor/gedi.py b/youtube_dlc/extractor/gedi.py index 5a5dabd7a..5efc8a6e9 100644 --- a/youtube_dlc/extractor/gedi.py +++ b/youtube_dlc/extractor/gedi.py @@ -17,8 +17,6 @@ class GediBaseIE(InfoExtractor): formats[:] = unique_formats def _real_extract(self, url): - u = re.match(self._VALID_URL, url) - self.IE_NAME = u.group('iename') if u.group('iename') else 'gedi' video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) @@ -107,9 +105,8 @@ class GediBaseIE(InfoExtractor): class GediIE(GediBaseIE): - IE_NAME = '' _VALID_URL = r'''(?x)https?://video\. - (?P + (?: (?:espresso\.)?repubblica |lastampa |ilsecoloxix @@ -177,37 +174,4 @@ class GediIE(GediBaseIE): 'description': 'md5:2bce954d278248f3c950be355b7c2226', 'thumbnail': r're:^https://www\.repstatic\.it/video/photo/.+?-thumb-social-play\.jpg$', }, - }, { - 'url': 'https://video.messaggeroveneto.gelocal.it/sport/dentro-la-notizia-ferrari-cosa-succede-a-maranello/133362/134466', - 'only_matching': True, - }, { - 'url': 'https://video.ilpiccolo.gelocal.it/sport/dentro-la-notizia-ferrari-cosa-succede-a-maranello/133362/134466', - 'only_matching': True, - }, { - 'url': 'https://video.gazzettadimantova.gelocal.it/sport/dentro-la-notizia-ferrari-cosa-succede-a-maranello/133362/134466', - 'only_matching': True, - }, { - 'url': 'https://video.mattinopadova.gelocal.it/sport/dentro-la-notizia-ferrari-cosa-succede-a-maranello/133362/134466', - 'only_matching': True, - }, { - 'url': 'https://video.laprovinciapavese.gelocal.it/sport/dentro-la-notizia-ferrari-cosa-succede-a-maranello/133362/134466', - 'only_matching': True, - }, { - 'url': 'https://video.tribunatreviso.gelocal.it/sport/dentro-la-notizia-ferrari-cosa-succede-a-maranello/133362/134466', - 'only_matching': True, - }, { - 'url': 'https://video.nuovavenezia.gelocal.it/sport/dentro-la-notizia-ferrari-cosa-succede-a-maranello/133362/134466', - 'only_matching': True, - }, { - 'url': 'https://video.gazzettadimodena.gelocal.it/sport/dentro-la-notizia-ferrari-cosa-succede-a-maranello/133362/134466', - 'only_matching': True, - }, { - 'url': 'https://video.lanuovaferrara.gelocal.it/sport/dentro-la-notizia-ferrari-cosa-succede-a-maranello/133362/134466', - 'only_matching': True, - }, { - 'url': 'https://video.corrierealpi.gelocal.it/sport/dentro-la-notizia-ferrari-cosa-succede-a-maranello/133362/134466', - 'only_matching': True, - }, { - 'url': 'https://video.lasentinella.gelocal.it/sport/dentro-la-notizia-ferrari-cosa-succede-a-maranello/133362/134466', - 'only_matching': True, }]