mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-05 07:27:47 +00:00
28 lines
567 B
Python
28 lines
567 B
Python
|
|
||
|
# Add tracks to 'Your Collection' of saved tracks
|
||
|
|
||
|
import pprint
|
||
|
import sys
|
||
|
|
||
|
import spotipy
|
||
|
import spotipy.util as util
|
||
|
|
||
|
scope = 'user-library-modify'
|
||
|
|
||
|
if len(sys.argv) > 2:
|
||
|
username = sys.argv[1]
|
||
|
aids = sys.argv[2:]
|
||
|
else:
|
||
|
print("Usage: %s username album-id ..." % (sys.argv[0],))
|
||
|
sys.exit()
|
||
|
|
||
|
token = util.prompt_for_user_token(username, scope)
|
||
|
|
||
|
if token:
|
||
|
sp = spotipy.Spotify(auth=token)
|
||
|
sp.trace = False
|
||
|
results = sp.current_user_saved_albums_add(albums=aids)
|
||
|
pprint.pprint(results)
|
||
|
else:
|
||
|
print("Can't get token for", username)
|