mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
Fetches all user playlists now (was limited to 50)
This commit is contained in:
@@ -119,10 +119,15 @@ def feed_playlist(username):
|
|||||||
links = []
|
links = []
|
||||||
check = 1
|
check = 1
|
||||||
# iterate over user playlists
|
# iterate over user playlists
|
||||||
|
while True:
|
||||||
for playlist in playlists['items']:
|
for playlist in playlists['items']:
|
||||||
print(str(check) + '. ' + misc.fix_encoding(playlist['name']) + ' (' + str(playlist['tracks']['total']) + ' tracks)')
|
print(str(check) + '. ' + misc.fix_encoding(playlist['name']) + ' (' + str(playlist['tracks']['total']) + ' tracks)')
|
||||||
links.append(playlist)
|
links.append(playlist)
|
||||||
check += 1
|
check += 1
|
||||||
|
if playlists['next']:
|
||||||
|
playlists = spotify.next(playlists)
|
||||||
|
else:
|
||||||
|
break
|
||||||
print('')
|
print('')
|
||||||
# let user select playlist
|
# let user select playlist
|
||||||
playlist = misc.input_link(links)
|
playlist = misc.input_link(links)
|
||||||
|
|||||||
Reference in New Issue
Block a user