playlist-maker
playlist-maker copied to clipboard
🎧 Make a Spotify playlist with songs by artists similar to your favorite artist
Results
1
playlist-maker issues
Sort by
recently updated
recently updated
newest added
This bit of code is used twice and could be extracted and refactored as a function ```python song_count = 0 for track in artist_top_tracks["tracks"]: if song_count < 5: list_of_tracks.append(track["id"]) song_count...