[extractors] Add missing age limits
This commit is contained in:
parent
d9f1123c08
commit
9b5c8751ee
4 changed files with 8 additions and 0 deletions
|
@ -14,6 +14,7 @@ class CamModelsIE(InfoExtractor):
|
|||
_TESTS = [{
|
||||
'url': 'https://www.cammodels.com/cam/AutumnKnight/',
|
||||
'only_matching': True,
|
||||
'age_limit': 18
|
||||
}]
|
||||
|
||||
def _real_extract(self, url):
|
||||
|
@ -93,4 +94,5 @@ class CamModelsIE(InfoExtractor):
|
|||
'title': self._live_title(user_id),
|
||||
'is_live': True,
|
||||
'formats': formats,
|
||||
'age_limit': 18
|
||||
}
|
||||
|
|
|
@ -20,6 +20,7 @@ class CamTubeIE(InfoExtractor):
|
|||
'duration': 1274,
|
||||
'timestamp': 1528018608,
|
||||
'upload_date': '20180603',
|
||||
'age_limit': 18
|
||||
},
|
||||
'params': {
|
||||
'skip_download': True,
|
||||
|
@ -66,4 +67,5 @@ class CamTubeIE(InfoExtractor):
|
|||
'like_count': like_count,
|
||||
'creator': creator,
|
||||
'formats': formats,
|
||||
'age_limit': 18
|
||||
}
|
||||
|
|
|
@ -25,6 +25,7 @@ class CamWithHerIE(InfoExtractor):
|
|||
'comment_count': int,
|
||||
'uploader': 'MileenaK',
|
||||
'upload_date': '20160322',
|
||||
'age_limit': 18,
|
||||
},
|
||||
'params': {
|
||||
'skip_download': True,
|
||||
|
@ -84,4 +85,5 @@ class CamWithHerIE(InfoExtractor):
|
|||
'comment_count': comment_count,
|
||||
'uploader': uploader,
|
||||
'upload_date': upload_date,
|
||||
'age_limit': 18
|
||||
}
|
||||
|
|
|
@ -14,6 +14,7 @@ class YourPornIE(InfoExtractor):
|
|||
'ext': 'mp4',
|
||||
'title': 'md5:c9f43630bd968267672651ba905a7d35',
|
||||
'thumbnail': r're:^https?://.*\.jpg$',
|
||||
'age_limit': 18
|
||||
},
|
||||
}
|
||||
|
||||
|
@ -38,4 +39,5 @@ class YourPornIE(InfoExtractor):
|
|||
'url': video_url,
|
||||
'title': title,
|
||||
'thumbnail': thumbnail,
|
||||
'age_limit': 18
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue