]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/pornoxo.py
Fix "invalid escape sequences" error on Python 3.6
[yt-dlp.git] / youtube_dl / extractor / pornoxo.py
CommitLineData
3d9fae1e
PH
1from __future__ import unicode_literals
2
3import re
4
567a5996 5from .jwplatform import JWPlatformBaseIE
3d9fae1e 6from ..utils import (
3d9fae1e
PH
7 str_to_int,
8)
9
f4a3490c 10
567a5996 11class PornoXOIE(JWPlatformBaseIE):
3d9fae1e
PH
12 _VALID_URL = r'https?://(?:www\.)?pornoxo\.com/videos/(?P<id>\d+)/(?P<display_id>[^/]+)\.html'
13 _TEST = {
14 'url': 'http://www.pornoxo.com/videos/7564/striptease-from-sexy-secretary.html',
15 'md5': '582f28ecbaa9e6e24cb90f50f524ce87',
16 'info_dict': {
17 'id': '7564',
18 'ext': 'flv',
19 'title': 'Striptease From Sexy Secretary!',
567a5996
DR
20 'display_id': 'striptease-from-sexy-secretary',
21 'description': 'md5:0ee35252b685b3883f4a1d38332f9980',
3d9fae1e 22 'categories': list, # NSFW
ec85ded8 23 'thumbnail': r're:https?://.*\.jpg$',
3d9fae1e
PH
24 'age_limit': 18,
25 }
26 }
27
28 def _real_extract(self, url):
29 mobj = re.match(self._VALID_URL, url)
567a5996 30 video_id, display_id = mobj.groups()
3d9fae1e
PH
31
32 webpage = self._download_webpage(url, video_id)
567a5996 33 video_data = self._extract_jwplayer_data(webpage, video_id, require_title=False)
3d9fae1e
PH
34
35 title = self._html_search_regex(
36 r'<title>([^<]+)\s*-\s*PornoXO', webpage, 'title')
37
3d9fae1e 38 view_count = str_to_int(self._html_search_regex(
f4a3490c 39 r'[vV]iews:\s*([0-9,]+)', webpage, 'view count', fatal=False))
3d9fae1e
PH
40
41 categories_str = self._html_search_regex(
42 r'<meta name="description" content=".*featuring\s*([^"]+)"',
43 webpage, 'categories', fatal=False)
44 categories = (
45 None if categories_str is None
46 else categories_str.split(','))
47
567a5996 48 video_data.update({
3d9fae1e 49 'id': video_id,
3d9fae1e 50 'title': title,
567a5996
DR
51 'display_id': display_id,
52 'description': self._html_search_meta('description', webpage),
3d9fae1e
PH
53 'categories': categories,
54 'view_count': view_count,
55 'age_limit': 18,
567a5996
DR
56 })
57
58 return video_data