diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-13 15:20:49 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-13 15:20:49 +0100 |
commit | 3fa5bb38028b38a6e65779f0b38407e6a46d15ea (patch) | |
tree | a90c3665061b91bdb6b1df20175289a936559e25 /youtube_dl | |
parent | c47ec62b8394fa52dbf966254503480ca9bb4868 (diff) |
[sexu] Modernize (#4171)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/sexu.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/youtube_dl/extractor/sexu.py b/youtube_dl/extractor/sexu.py index 45b33b3ea..6365a8779 100644 --- a/youtube_dl/extractor/sexu.py +++ b/youtube_dl/extractor/sexu.py @@ -22,13 +22,11 @@ class SexuIE(InfoExtractor): } def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - video_id = mobj.group('id') - + video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) - quality_arr = self._search_regex(r'sources:\s*\[([^\]]+)\]', webpage, 'quality formats') - + quality_arr = self._search_regex( + r'sources:\s*\[([^\]]+)\]', webpage, 'forrmat string') formats = [{ 'url': fmt[0].replace('\\', ''), 'format_id': fmt[1], @@ -37,15 +35,17 @@ class SexuIE(InfoExtractor): self._sort_formats(formats) title = self._html_search_regex( - r'<title>([^<]+)\s*-\s*Sexu.Com</title>', webpage, 'title') + r'<title>([^<]+)\s*-\s*Sexu\.Com</title>', webpage, 'title') - description = self._html_search_meta('description', webpage, 'description') + description = self._html_search_meta( + 'description', webpage, 'description') thumbnail = self._html_search_regex( r'image:\s*"([^"]+)"', webpage, 'thumbnail', fatal=False) - categories_str = self._html_search_meta('keywords', webpage, 'categories', fatal=False) + categories_str = self._html_search_meta( + 'keywords', webpage, 'categories') categories = ( None if categories_str is None else categories_str.split(',')) |