spotipy/examples/search.py
Lucas a19176d22e Update search.py
str is a keyword. Refactored variable to search_str.
2014-06-23 23:15:41 -06:00

15 lines
242 B
Python

# shows artist info for a URN or URL
import spotipy
import sys
import pprint
if len(sys.argv) > 1:
search_str = sys.argv[1]
else:
search_str = 'Radiohead'
sp = spotipy.Spotify()
result = sp.search(search_str)
pprint.pprint(result)