mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 09:13:53 +00:00
12 lines
328 B
Python
12 lines
328 B
Python
import spotipy
|
||
from spotipy.oauth2 import SpotifyOAuth
|
||
|
||
scope = "user-library-read"
|
||
|
||
sp = spotipy.Spotify(auth_manager=SpotifyOAuth(scope=scope))
|
||
|
||
results = sp.current_user_saved_tracks()
|
||
for idx, item in enumerate(results['items']):
|
||
track = item['track']
|
||
print(idx, track['artists'][0]['name'], " – ", track['name'])
|