- Notifications
You must be signed in to change notification settings - Fork 122
Description
Thank you for creating already several _paginated methods for v2 endpoints. Is it possible also to create such methods also for v1 endpoints, like: playlist_and_favorite_playlists() (
Line 191 in 19ca091
| def playlist_and_favorite_playlists( |
Why I am asking? If I use this method playlist_and_favorite_playlists() it returns all user playlists including the playlists within any user folder. This means, if I have 20 playlists in my root folder and 10 playlists in root/my-folder it returns all 30 playlists.
But if I use playlists_paginated (
Line 669 in 19ca091
| def playlists_paginated( |
root folder, in my case only 20. I would like to use your sped up paginated worker for a method, which simply returns all playlists, regardless if they are in a folder or not, basically the behavior of playlist_and_favorite_playlists() but with your pagination worker.