mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 07:50:11 +01:00
86e5f3ed2e
Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
from .nuevo import NuevoBaseIE
|
|
|
|
|
|
class LoveHomePornIE(NuevoBaseIE):
|
|
_VALID_URL = r'https?://(?:www\.)?lovehomeporn\.com/video/(?P<id>\d+)(?:/(?P<display_id>[^/?#&]+))?'
|
|
_TEST = {
|
|
'url': 'http://lovehomeporn.com/video/48483/stunning-busty-brunette-girlfriend-sucking-and-riding-a-big-dick#menu',
|
|
'info_dict': {
|
|
'id': '48483',
|
|
'display_id': 'stunning-busty-brunette-girlfriend-sucking-and-riding-a-big-dick',
|
|
'ext': 'mp4',
|
|
'title': 'Stunning busty brunette girlfriend sucking and riding a big dick',
|
|
'age_limit': 18,
|
|
'duration': 238.47,
|
|
},
|
|
'params': {
|
|
'skip_download': True,
|
|
}
|
|
}
|
|
|
|
def _real_extract(self, url):
|
|
mobj = self._match_valid_url(url)
|
|
video_id = mobj.group('id')
|
|
display_id = mobj.group('display_id')
|
|
|
|
info = self._extract_nuevo(
|
|
'http://lovehomeporn.com/media/nuevo/config.php?key=%s' % video_id,
|
|
video_id)
|
|
info.update({
|
|
'display_id': display_id,
|
|
'age_limit': 18
|
|
})
|
|
return info
|