spotipy/examples/tracks.py

13 lines
276 B
Python
Raw Normal View History

2014-04-05 13:12:01 +00:00
# shows tracks for the given artist
import spotipy
import sys
sp = spotipy.Spotify()
if len(sys.argv) > 1:
artist_name = ' '.join(sys.argv[1:])
tracks = sp.search(q=artist_name, limit=20)
for i, t in enumerate(tracks['tracks']):
print ' ', i, t['name']