diff --git a/spotpy.py b/spotpy.py deleted file mode 100644 index 9e1f1ff..0000000 --- a/spotpy.py +++ /dev/null @@ -1,11 +0,0 @@ -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']) \ No newline at end of file