mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-05 07:27:47 +00:00
28 lines
620 B
Python
28 lines
620 B
Python
|
|
||
|
# Replaces all tracks in a playlist
|
||
|
|
||
|
import pprint
|
||
|
import sys
|
||
|
|
||
|
import spotipy
|
||
|
import spotipy.util as util
|
||
|
|
||
|
if len(sys.argv) > 3:
|
||
|
username = sys.argv[1]
|
||
|
playlist_id = sys.argv[2]
|
||
|
track_ids = sys.argv[3:]
|
||
|
else:
|
||
|
print "Usage: %s username playlist_id track_id ..." % (sys.argv[0],)
|
||
|
sys.exit()
|
||
|
|
||
|
scope = 'playlist-modify-public'
|
||
|
token = util.prompt_for_user_token(username, scope)
|
||
|
|
||
|
if token:
|
||
|
sp = spotipy.Spotify(auth=token)
|
||
|
sp.trace = False
|
||
|
results = sp.user_playlist_replace_tracks(username, playlist_id, track_ids)
|
||
|
pprint.pprint(results)
|
||
|
else:
|
||
|
print "Can't get token for", username
|