diff options
author | sepro <4618135+seproDev@users.noreply.github.com> | 2024-03-09 01:02:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-09 01:02:45 +0100 |
commit | df773c3d5d1cc1f877cf8582f0072e386fc49318 (patch) | |
tree | 9dd33db5c1ce7e079bd1b41de60f9783f1253bef /yt_dlp/extractor/savefrom.py | |
parent | f4f9f6d00edcac6d4eb2b3fb78bf81326235d492 (diff) |
[cleanup] Mark broken and remove dead extractors (#9238)
Authored by: seproDev
Diffstat (limited to 'yt_dlp/extractor/savefrom.py')
-rw-r--r-- | yt_dlp/extractor/savefrom.py | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/yt_dlp/extractor/savefrom.py b/yt_dlp/extractor/savefrom.py deleted file mode 100644 index 9c9e74b6d..000000000 --- a/yt_dlp/extractor/savefrom.py +++ /dev/null @@ -1,30 +0,0 @@ -import os.path - -from .common import InfoExtractor - - -class SaveFromIE(InfoExtractor): - IE_NAME = 'savefrom.net' - _VALID_URL = r'https?://[^.]+\.savefrom\.net/\#url=(?P<url>.*)$' - - _TEST = { - 'url': 'http://en.savefrom.net/#url=http://youtube.com/watch?v=UlVRAPW2WJY&utm_source=youtube.com&utm_medium=short_domains&utm_campaign=ssyoutube.com', - 'info_dict': { - 'id': 'UlVRAPW2WJY', - 'ext': 'mp4', - 'title': 'About Team Radical MMA | MMA Fighting', - 'upload_date': '20120816', - 'uploader': 'Howcast', - 'uploader_id': 'Howcast', - 'description': r're:(?s).* Hi, my name is Rene Dreifuss\. And I\'m here to show you some MMA.*', - }, - 'params': { - 'skip_download': True - } - } - - def _real_extract(self, url): - mobj = self._match_valid_url(url) - video_id = os.path.splitext(url.split('/')[-1])[0] - - return self.url_result(mobj.group('url'), video_id=video_id) |