Moved to spotipy at pypi

This commit is contained in:
Paul Lamere
2014-08-25 17:30:31 -04:00
parent d30cb66b05
commit 8314091b80
4 changed files with 7 additions and 7 deletions

View File

@@ -300,7 +300,7 @@ class Spotify(object):
- name - the name of the playlist
- public - is the created playlist public
'''
data = {'name':name, 'public':True }
data = {'name':name, 'public':public }
return self._post("users/%s/playlists" % (user,), payload = data)
def user_playlist_add_tracks(self, user, playlist_id, tracks,