summaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/veoh.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--yt_dlp/extractor/veoh.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/yt_dlp/extractor/veoh.py b/yt_dlp/extractor/veoh.py
index 92ff865..dc1bf96 100644
--- a/yt_dlp/extractor/veoh.py
+++ b/yt_dlp/extractor/veoh.py
@@ -80,7 +80,7 @@ class VeohIE(InfoExtractor):
'age_limit': 18,
'categories': ['technology_and_gaming', 'gaming'],
'tags': ['puzzle', 'of', 'flesh'],
- }
+ },
}]
def _real_extract(self, url):
@@ -138,17 +138,17 @@ class VeohUserIE(VeohIE): # XXX: Do not subclass from concrete IE
'url': 'https://www.veoh.com/users/valentinazoe',
'info_dict': {
'id': 'valentinazoe',
- 'title': 'valentinazoe (Uploads)'
+ 'title': 'valentinazoe (Uploads)',
},
- 'playlist_mincount': 75
+ 'playlist_mincount': 75,
},
{
'url': 'https://www.veoh.com/users/PiensaLibre',
'info_dict': {
'id': 'PiensaLibre',
- 'title': 'PiensaLibre (Uploads)'
+ 'title': 'PiensaLibre (Uploads)',
},
- 'playlist_mincount': 2
+ 'playlist_mincount': 2,
}]
_PAGE_SIZE = 16
@@ -159,14 +159,14 @@ class VeohUserIE(VeohIE): # XXX: Do not subclass from concrete IE
note=f'Downloading videos page {page + 1}',
headers={
'x-csrf-token': self._TOKEN,
- 'content-type': 'application/json;charset=UTF-8'
+ 'content-type': 'application/json;charset=UTF-8',
},
data=json.dumps({
'username': uploader,
'maxResults': self._PAGE_SIZE,
'page': page + 1,
- 'requestName': 'userPage'
- }).encode('utf-8'))
+ 'requestName': 'userPage',
+ }).encode())
if not response.get('success'):
raise ExtractorError(response['message'])