mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-14 02:57:27 +00:00
Add playlist description field to create/update examples
This commit is contained in:
parent
f5bb6db89f
commit
4c3238fb17
@ -19,9 +19,13 @@ if len(sys.argv) > 3:
|
||||
if len(sys.argv) > 5:
|
||||
collaborative = sys.argv[5].lower() == 'true'
|
||||
|
||||
description = None
|
||||
if len(sys.argv) > 6:
|
||||
description = sys.argv[6]
|
||||
|
||||
else:
|
||||
print ("Usage: %s username playlist_id name [public collaborative]" %
|
||||
(sys.argv[0]))
|
||||
print ("Usage: %s username playlist_id name [public collaborative "
|
||||
"description]" % (sys.argv[0]))
|
||||
sys.exit()
|
||||
|
||||
scope = 'playlist-modify-public playlist-modify-private'
|
||||
@ -32,7 +36,7 @@ if token:
|
||||
sp.trace = False
|
||||
results = sp.user_playlist_change_details(
|
||||
username, playlist_id, name=name, public=public,
|
||||
collaborative=collaborative)
|
||||
collaborative=collaborative, description=description)
|
||||
print results
|
||||
else:
|
||||
print "Can't get token for", username
|
||||
|
@ -12,8 +12,9 @@ import spotipy.util as util
|
||||
if len(sys.argv) > 2:
|
||||
username = sys.argv[1]
|
||||
playlist_name = sys.argv[2]
|
||||
playlist_description = sys.argv[3]
|
||||
else:
|
||||
print("Usage: %s username playlist-name" % (sys.argv[0],))
|
||||
print("Usage: %s username playlist-name playlist-description" % (sys.argv[0],))
|
||||
sys.exit()
|
||||
|
||||
token = util.prompt_for_user_token(username)
|
||||
@ -21,7 +22,8 @@ token = util.prompt_for_user_token(username)
|
||||
if token:
|
||||
sp = spotipy.Spotify(auth=token)
|
||||
sp.trace = False
|
||||
playlists = sp.user_playlist_create(username, playlist_name)
|
||||
playlists = sp.user_playlist_create(username, playlist_name,
|
||||
playlist_description)
|
||||
pprint.pprint(playlists)
|
||||
else:
|
||||
print("Can't get token for", username)
|
||||
|
Loading…
Reference in New Issue
Block a user