diff options
author | James Taylor <user234683@users.noreply.github.com> | 2021-03-05 23:27:31 -0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-03-15 22:22:15 -0500 |
commit | e549b5f67c4beff421a2b2b36f3b5031bfe8ed88 (patch) | |
tree | a4377a1e3817b6d466730d2a5059ffb3dc0688d5 /youtube/yt_data_extract/common.py | |
parent | b2c1066734b59f69666a3cfc0f82ed9718685d4b (diff) | |
download | yt-local-e549b5f67c4beff421a2b2b36f3b5031bfe8ed88.tar.lz yt-local-e549b5f67c4beff421a2b2b36f3b5031bfe8ed88.tar.xz yt-local-e549b5f67c4beff421a2b2b36f3b5031bfe8ed88.zip |
Channel: Allow going to next pages of playlists page
Uses previous and next buttons. Now can view more than just
first page of playlists page
Signed-off-by: Jesús <heckyel@hyperbola.info>
Diffstat (limited to 'youtube/yt_data_extract/common.py')
-rw-r--r-- | youtube/yt_data_extract/common.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/youtube/yt_data_extract/common.py b/youtube/yt_data_extract/common.py index 57a84ed..2b394e6 100644 --- a/youtube/yt_data_extract/common.py +++ b/youtube/yt_data_extract/common.py @@ -450,6 +450,14 @@ def extract_items_from_renderer(renderer, item_types=_item_types): if key in item_types: items.append(renderer) + # ctoken sometimes placed in these renderers, e.g. channel playlists + elif key == 'continuationItemRenderer': + cont = deep_get( + value, 'continuationEndpoint', 'continuationCommand', 'token' + ) + if cont: + ctoken = cont + # has a list in it, add it to the iter stack elif get_nested_renderer_list_function(key): renderer_list, cont = get_nested_renderer_list_function(key)(value) |