spotipy/examples/tracks.py
2014-04-05 09:12:01 -04:00

13 lines
276 B
Python

# 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']