Update/remove outdated examples

This commit is contained in:
Stephane Bruckert 2020-01-16 23:47:18 +00:00
parent 7fb97ed00e
commit 45c3e5e951
4 changed files with 4 additions and 38 deletions

View File

@ -271,7 +271,7 @@ Shows the contents of every playlist owned by a user::
print()
print(playlist['name'])
print (' total tracks', playlist['tracks']['total'])
results = sp.user_playlist(username, playlist['id'],
results = sp.playlist(playlist['id'],
fields="tracks,next")
tracks = results['tracks']
show_tracks(tracks)

View File

@ -5,9 +5,6 @@ import json
client_credentials_manager = SpotifyClientCredentials()
sp = spotipy.Spotify(client_credentials_manager=client_credentials_manager)
uri = 'spotify:user:spotifycharts:playlist:37i9dQZEVXbJiZcmkrIHGU'
username = uri.split(':')[2]
playlist_id = uri.split(':')[4]
results = sp.user_playlist(username, playlist_id)
playlist_id = 'spotify:user:spotifycharts:playlist:37i9dQZEVXbJiZcmkrIHGU'
results = sp.playlist(playlist_id)
print(json.dumps(results, indent=4))

View File

@ -31,8 +31,7 @@ if __name__ == '__main__':
print()
print(playlist['name'])
print(' total tracks', playlist['tracks']['total'])
results = sp.user_playlist(
username, playlist['id'], fields="tracks,next")
results = sp.playlist(playlist['id'], fields="tracks,next")
tracks = results['tracks']
show_tracks(tracks)
while tracks['next']:

View File

@ -1,30 +0,0 @@
# shows a user's starred playlist
import sys
import spotipy
import spotipy.util as util
if len(sys.argv) > 1:
username = sys.argv[1]
else:
print("Whoops, need your username!")
print("usage: python user_playlists.py [username]")
sys.exit()
token = util.prompt_for_user_token(username)
if token:
sp = spotipy.Spotify(auth=token)
results = sp.user_playlist(username)
tracks = results['tracks']
which = 1
while tracks:
for item in tracks['items']:
track = item['track']
print(which, track['name'], ' --', track['artists'][0]['name'])
which += 1
tracks = sp.next(tracks)
else:
print("Can't get token for", username)