@@ -365,20 +365,25 @@ def get_user_playlist_mappings(spotify_session: spotipy.Spotify, tidal_session:
365
365
return results
366
366
367
367
async def get_playlists_from_spotify (spotify_session : spotipy .Spotify , config ):
368
- # get all the user playlists from the Spotify account
368
+ # get all the playlists from the Spotify account
369
369
playlists = []
370
370
print ("Loading Spotify playlists" )
371
- results = spotify_session .current_user_playlists ()
371
+ first_results = spotify_session .current_user_playlists ()
372
372
exclude_list = set ([x .split (':' )[- 1 ] for x in config .get ('excluded_playlists' , [])])
373
- playlists .extend ([p for p in results ['items' ] if p ['owner' ]['id' ] == config ['spotify' ]['username' ] and not p ['id' ] in exclude_list ])
373
+ playlists .extend ([p for p in first_results ['items' ]])
374
+ user_id = spotify_session .current_user ()['id' ]
374
375
375
376
# get all the remaining playlists in parallel
376
- if results ['next' ]:
377
- offsets = [ results ['limit' ] * n for n in range (1 , math .ceil (results ['total' ]/ results ['limit' ])) ]
377
+ if first_results ['next' ]:
378
+ offsets = [ first_results ['limit' ] * n for n in range (1 , math .ceil (first_results ['total' ]/ first_results ['limit' ])) ]
378
379
extra_results = await atqdm .gather ( * [asyncio .to_thread (spotify_session .current_user_playlists , offset = offset ) for offset in offsets ] )
379
380
for extra_result in extra_results :
380
- playlists .extend ([p for p in extra_result ['items' ] if p ['owner' ]['id' ] == config ['spotify' ]['username' ] and not p ['id' ] in exclude_list ])
381
- return playlists
381
+ playlists .extend ([p for p in extra_result ['items' ]])
382
+
383
+ # filter out playlists that don't belong to us or are on the exclude list
384
+ my_playlist_filter = lambda p : p ['owner' ]['id' ] == user_id
385
+ exclude_filter = lambda p : not p ['id' ] in exclude_list
386
+ return list (filter ( exclude_filter , filter ( my_playlist_filter , playlists )))
382
387
383
388
def get_playlists_from_config (spotify_session : spotipy .Spotify , tidal_session : tidalapi .Session , config ):
384
389
# get the list of playlist sync mappings from the configuration file
0 commit comments