Closed kedorlaomer closed 1 year ago
The reason is https://github.com/fm16191/spotify-recorder/blob/9527c15eddfa948af12735bc71382fe1e42e1fb2/api.py#L150 The function playlist returns only the first 100 items of the playlist and does not allow to ask for more. Instead, the function playlist_items can be used. Its interface allows to add offset and limit such that large playlists can be downloaded in bunches.
playlist
playlist_items
offset
limit
do this: https://github.com/guemmelboy123/spotify-recorder/blob/main/api.py
The reason is https://github.com/fm16191/spotify-recorder/blob/9527c15eddfa948af12735bc71382fe1e42e1fb2/api.py#L150 The function
playlist
returns only the first 100 items of the playlist and does not allow to ask for more. Instead, the functionplaylist_items
can be used. Its interface allows to addoffset
andlimit
such that large playlists can be downloaded in bunches.