aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-09-01 00:00:01 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-09-01 00:00:01 +0200
commitd169e36f5c4dc50a6c19c2155ea7ea7a89dd5c31 (patch)
treebfe7eb6d005fff3f1139cbde061028871c133f53
parent2d7af094879401db25330cfddcdb81bbc1dadb2b (diff)
downloadyoutube-dl-d169e36f5c4dc50a6c19c2155ea7ea7a89dd5c31.tar.xz
[beeg] PEP8 and additional tests
-rw-r--r--youtube_dl/extractor/beeg.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/youtube_dl/extractor/beeg.py b/youtube_dl/extractor/beeg.py
index 775f6be6b..c2692cfdc 100644
--- a/youtube_dl/extractor/beeg.py
+++ b/youtube_dl/extractor/beeg.py
@@ -15,6 +15,8 @@ class BeegIE(InfoExtractor):
'ext': 'mp4',
'title': 'Sultry Striptease',
'description': 'md5:6db3c6177972822aaba18652ff59c773',
+ 'categories': list, # NSFW
+ 'thumbnail': 're:https?://.*\.jpg$',
}
}
@@ -24,15 +26,18 @@ class BeegIE(InfoExtractor):
webpage = self._download_webpage(url, video_id)
- video_url = self._html_search_regex(r"'480p'\s*:\s*'([^']+)'", webpage, 'video URL')
+ video_url = self._html_search_regex(
+ r"'480p'\s*:\s*'([^']+)'", webpage, 'video URL')
- title = self._html_search_regex(r'<title>([^<]+)\s*-\s*beeg\.?</title>', webpage, 'title')
+ title = self._html_search_regex(
+ r'<title>([^<]+)\s*-\s*beeg\.?</title>', webpage, 'title')
description = self._html_search_regex(
- r'<meta name="description" content="([^"]*)"', webpage, 'description', fatal=False)
-
+ r'<meta name="description" content="([^"]*)"',
+ webpage, 'description', fatal=False)
thumbnail = self._html_search_regex(
- r'\'previewer.url\'\s*:\s*"([^"]*)"', webpage, 'thumbnail', fatal=False)
+ r'\'previewer.url\'\s*:\s*"([^"]*)"',
+ webpage, 'thumbnail', fatal=False)
categories_str = self._html_search_regex(
r'<meta name="keywords" content="([^"]+)"', webpage, 'categories', fatal=False)