diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-12-06 09:29:41 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-12-06 09:29:41 +0600 |
commit | 33d152b6cc04bfdf658691dbf12c1d976cfa0ba3 (patch) | |
tree | 4e62d628d7c79066dcadcebd062ad6a81fea2899 /youtube_dl/extractor/videoweed.py | |
parent | 51c4fec0d58af709a06bd75338b23eace412362f (diff) |
[novamov] Move all novamov based extractors to a single place
For easier navigation
Diffstat (limited to 'youtube_dl/extractor/videoweed.py')
-rw-r--r-- | youtube_dl/extractor/videoweed.py | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/youtube_dl/extractor/videoweed.py b/youtube_dl/extractor/videoweed.py deleted file mode 100644 index ca2e50935..000000000 --- a/youtube_dl/extractor/videoweed.py +++ /dev/null @@ -1,26 +0,0 @@ -from __future__ import unicode_literals - -from .novamov import NovaMovIE - - -class VideoWeedIE(NovaMovIE): - IE_NAME = 'videoweed' - IE_DESC = 'VideoWeed' - - _VALID_URL = NovaMovIE._VALID_URL_TEMPLATE % {'host': 'videoweed\.(?:es|com)'} - - _HOST = 'www.videoweed.es' - - _FILE_DELETED_REGEX = r'>This file no longer exists on our servers.<' - _TITLE_REGEX = r'<h1 class="text_shadow">([^<]+)</h1>' - - _TEST = { - 'url': 'http://www.videoweed.es/file/b42178afbea14', - 'md5': 'abd31a2132947262c50429e1d16c1bfd', - 'info_dict': { - 'id': 'b42178afbea14', - 'ext': 'flv', - 'title': 'optical illusion dissapeared image magic illusion', - 'description': '' - }, - } |