mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-05 07:27:47 +00:00
Merge pull request #7 from mattdennewitz/master
added simplejson to installation requirements
This commit is contained in:
commit
6ae679600a
2
setup.py
2
setup.py
@ -8,6 +8,6 @@ setup(
|
|||||||
author="@plamere",
|
author="@plamere",
|
||||||
author_email="paul@echonest.com",
|
author_email="paul@echonest.com",
|
||||||
url='http://github.com/plamere/spotipy',
|
url='http://github.com/plamere/spotipy',
|
||||||
install_requires=['requests>=1.0', ],
|
install_requires=['requests>=1.0', 'simplejson>=3.5.2'],
|
||||||
license='LICENSE.txt',
|
license='LICENSE.txt',
|
||||||
py_modules=['spotipy', 'spotipy.oauth2'],)
|
py_modules=['spotipy', 'spotipy.oauth2'],)
|
||||||
|
@ -6,6 +6,7 @@ import base64
|
|||||||
import requests
|
import requests
|
||||||
import simplejson as json
|
import simplejson as json
|
||||||
|
|
||||||
|
|
||||||
__all__ = ['oauth2']
|
__all__ = ['oauth2']
|
||||||
|
|
||||||
''' A simple and thin Python library for the Spotify Web API
|
''' A simple and thin Python library for the Spotify Web API
|
||||||
|
Loading…
Reference in New Issue
Block a user