mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-05 15:37:47 +00:00
17 lines
298 B
Python
17 lines
298 B
Python
|
# shows artist info for a URN or URL
|
||
|
|
||
|
import spotipy
|
||
|
import sys
|
||
|
import pprint
|
||
|
|
||
|
if len(sys.argv) > 1:
|
||
|
urn = sys.argv[1]
|
||
|
else:
|
||
|
urn = 'spotify:artist:3jOstUTkEu2JkjvRdBA5Gu'
|
||
|
|
||
|
sp = spotipy.Spotify()
|
||
|
response = sp.artist_top_tracks(urn)
|
||
|
|
||
|
for track in response['tracks']:
|
||
|
print track['name']
|