Skip to content

Commit

Permalink
Moved to spotipy at pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
plamere committed Aug 25, 2014
1 parent d30cb66 commit 8314091
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ If you already have [Python](http://www.python.org/) on your system you can inst

You can also install it using a popular package manager with

`pip install SpotipyWebAPI`
`pip install spotipy`

or

`easy_install SpotipyWebAPI`
`easy_install spotipy`


## Dependencies
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ Installation
============
Install *Spotipy* with::

pip install SpotipyWebAPI
pip install spotipy

Or with::

easy_install SpotipyWebAPI
easy_install spotipy

Or you can get the source from github at https://github.com/plamere/spotipy

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from setuptools import setup

setup(
name='SpotipyWebApi',
version='2.0.0',
name='spotipy',
version='2.0.1',
description='simple client for the Spotify Web API',
author="@plamere",
author_email="[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion spotipy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def user_playlist_create(self, user, name, public=True):
- 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,
Expand Down

0 comments on commit 8314091

Please sign in to comment.