mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-05 07:27:47 +00:00
28 lines
553 B
Python
28 lines
553 B
Python
# Creates a playlist for a user
|
|
|
|
import pprint
|
|
import sys
|
|
import os
|
|
import subprocess
|
|
|
|
import spotipy
|
|
import spotipy.util as util
|
|
|
|
|
|
if len(sys.argv) > 2:
|
|
username = sys.argv[1]
|
|
playlist_name = sys.argv[2]
|
|
else:
|
|
print "Usage: %s username playlist-name" % (sys.argv[0],)
|
|
sys.exit()
|
|
|
|
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)
|
|
pprint.pprint(playlists)
|
|
else:
|
|
print "Can't get token for", username
|