From c37ca4732bf806113e2645efaebd037a6bcc0b5c Mon Sep 17 00:00:00 2001 From: xarantolus Date: Fri, 10 Jul 2020 11:47:13 +0200 Subject: [PATCH] [youtube] Remote download limit --- youtube_dl/extractor/youtube.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 745e14fa3..b53376d31 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -3319,8 +3319,6 @@ def _real_initialize(self): def _entries(self, page): # The extraction process is the same as for playlists, but the regex # for the video ids doesn't contain an index - limit = self._downloader.params.get('max_downloads') or 1000 - ids = [] more_widget_html = content_html = page for page_num in itertools.count(1): @@ -3333,19 +3331,11 @@ def _entries(self, page): if not new_ids: break - done = False - if len(new_ids) + len(ids) > limit: - new_ids = new_ids[:limit - len(ids)] - done = True - ids.extend(new_ids) for entry in self._ids_to_results(new_ids): yield entry - if done: - break - mobj = re.search(r'data-uix-load-more-href="/?(?P[^"]+)"', more_widget_html) if not mobj: break