From 68752000f0213f801a7c5e8127b77afeba644f7d Mon Sep 17 00:00:00 2001 From: Jesus E Date: Sun, 28 May 2023 21:04:36 -0400 Subject: Update channel to new ctoken format Huge thanks to @michaelweiser Different sortings still don't work for videos and playlists --- youtube/yt_data_extract/common.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'youtube/yt_data_extract/common.py') diff --git a/youtube/yt_data_extract/common.py b/youtube/yt_data_extract/common.py index f97597c..2e59109 100644 --- a/youtube/yt_data_extract/common.py +++ b/youtube/yt_data_extract/common.py @@ -542,8 +542,12 @@ def extract_items(response, item_types=_item_types, item_types=item_types) if items: break - elif 'onResponseReceivedEndpoints' in response: - for endpoint in response.get('onResponseReceivedEndpoints', []): + elif ('onResponseReceivedEndpoints' in response + or 'onResponseReceivedActions' in response): + for endpoint in multi_get(response, + 'onResponseReceivedEndpoints', + 'onResponseReceivedActions', + []): items, ctoken = extract_items_from_renderer_list( multi_deep_get( endpoint, -- cgit v1.2.3