Improved README docs

This commit is contained in:
Paul Lamere
2014-08-22 12:10:48 -04:00
parent b455d529f0
commit 3e552d90df
2 changed files with 20 additions and 52 deletions

6
examples/simple0.py Normal file
View File

@@ -0,0 +1,6 @@
import spotipy
sp = spotipy.Spotify()
results = sp.search(q='weezer', limit=20)
for i, t in enumerate(results['tracks']['items']):
print ' ', i, t['name']