diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-04-21 23:31:34 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-04-21 23:31:34 +0600 | 
| commit | 09a9fadb843d55f70724382c6ad6c5a387f52bc3 (patch) | |
| tree | 30c58904dbb1e657d30adc91674ecb3139578c50 /youtube_dl/extractor/dump.py | |
| parent | bf09af3acbafd37e8327b8bab118066bd4c23d31 (diff) | |
[dump] Remove extractor
Diffstat (limited to 'youtube_dl/extractor/dump.py')
| -rw-r--r-- | youtube_dl/extractor/dump.py | 39 | 
1 files changed, 0 insertions, 39 deletions
| diff --git a/youtube_dl/extractor/dump.py b/youtube_dl/extractor/dump.py deleted file mode 100644 index ff78d4fd2..000000000 --- a/youtube_dl/extractor/dump.py +++ /dev/null @@ -1,39 +0,0 @@ -# encoding: utf-8 -from __future__ import unicode_literals - -import re - -from .common import InfoExtractor - - -class DumpIE(InfoExtractor): -    _VALID_URL = r'^https?://(?:www\.)?dump\.com/(?P<id>[a-zA-Z0-9]+)/' - -    _TEST = { -        'url': 'http://www.dump.com/oneus/', -        'md5': 'ad71704d1e67dfd9e81e3e8b42d69d99', -        'info_dict': { -            'id': 'oneus', -            'ext': 'flv', -            'title': "He's one of us.", -            'thumbnail': 're:^https?://.*\.jpg$', -        }, -    } - -    def _real_extract(self, url): -        m = re.match(self._VALID_URL, url) -        video_id = m.group('id') - -        webpage = self._download_webpage(url, video_id) -        video_url = self._search_regex( -            r's1.addVariable\("file",\s*"([^"]+)"', webpage, 'video URL') - -        title = self._og_search_title(webpage) -        thumbnail = self._og_search_thumbnail(webpage) - -        return { -            'id': video_id, -            'title': title, -            'url': video_url, -            'thumbnail': thumbnail, -        } | 
