aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxarantolus <xarantolus@protonmail.com>2020-07-30 16:38:56 +0200
committerxarantolus <xarantolus@protonmail.com>2020-07-30 16:38:56 +0200
commit4f37c60bf5f2af245985d314f0f64f473644feef (patch)
treebe954413178255ec78a82c285b69a1e11522225f
parentc449f709653bbd28293c8973f14a1c0a38600e58 (diff)
downloadhypervideo-pre-4f37c60bf5f2af245985d314f0f64f473644feef.tar.lz
hypervideo-pre-4f37c60bf5f2af245985d314f0f64f473644feef.tar.xz
hypervideo-pre-4f37c60bf5f2af245985d314f0f64f473644feef.zip
Run formatter
-rw-r--r--youtube_dl/extractor/youtube.py19
1 files changed, 9 insertions, 10 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index de70772c7..f6bed3f68 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -3310,7 +3310,7 @@ class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
"""
_LOGIN_REQUIRED = True
_FEED_DATA = r'window\[\"ytInitialData\"\]\W?=\W?({.*?});'
- _YTCFG_DATA = r"ytcfg.set\(({.*?})\)"
+ _YTCFG_DATA = r"ytcfg.set\(({.*?})\)"
@property
def IE_NAME(self):
@@ -3319,10 +3319,9 @@ class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
def _real_initialize(self):
self._login()
-
def _find_videos_in_json(self, extracted):
videos = []
- continuation = None
+ continuation = None
def _real_find(obj):
if obj is None or isinstance(obj, str):
@@ -3336,19 +3335,19 @@ class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
if "videoId" in obj:
videos.append(obj)
return
-
+
if "nextContinuationData" in obj:
nonlocal continuation
continuation = obj["nextContinuationData"]
- return
-
+ return
+
for _, o in obj.items():
_real_find(o)
_real_find(extracted)
return videos, continuation
-
+
def _entries(self, page):
info = []
@@ -3359,14 +3358,14 @@ class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
for page_num in itertools.count(1):
video_info, continuation = self._find_videos_in_json(search_response)
- new_info = []
+ new_info = []
for v in video_info:
v_id = try_get(v, lambda x: x['videoId'])
if not v_id:
continue
- have_video = False
+ have_video = False
for old in info:
if old['videoId'] == v_id:
have_video = True
@@ -3402,7 +3401,7 @@ class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
"X-YouTube-Device": try_get(yt_conf, lambda x: x["DEVICE"]),
"X-YouTube-Page-CL": try_get(yt_conf, lambda x: x["PAGE_CL"]),
"X-YouTube-Page-Label": try_get(yt_conf, lambda x: x["PAGE_BUILD_LABEL"]),
- "X-YouTube-Variants-Checksum": try_get(yt_conf, lambda x: x["VARIANTS_CHECKSUM"]),
+ "X-YouTube-Variants-Checksum": try_get(yt_conf, lambda x: x["VARIANTS_CHECKSUM"]),
})
def _real_extract(self, url):