mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-23 17:02:30 +00:00
[common] Add new parameters for _download_webpage
This commit is contained in:
parent
225e4b9633
commit
995ad69c54
@ -360,9 +360,19 @@ def _webpage_read_content(self, urlh, url_or_request, video_id, note=None, errno
|
|||||||
|
|
||||||
return content
|
return content
|
||||||
|
|
||||||
def _download_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
|
def _download_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True, tries=1, timeout=5):
|
||||||
""" Returns the data of the page as a string """
|
""" Returns the data of the page as a string """
|
||||||
|
success = False
|
||||||
|
try_count = 0
|
||||||
|
while success is False:
|
||||||
|
try:
|
||||||
res = self._download_webpage_handle(url_or_request, video_id, note, errnote, fatal)
|
res = self._download_webpage_handle(url_or_request, video_id, note, errnote, fatal)
|
||||||
|
success = True
|
||||||
|
except compat_http_client.IncompleteRead as e:
|
||||||
|
try_count += 1
|
||||||
|
if try_count >= tries:
|
||||||
|
raise e
|
||||||
|
self._sleep(timeout, video_id)
|
||||||
if res is False:
|
if res is False:
|
||||||
return res
|
return res
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user