Untitled
unknown
python
4 years ago
274 B
2
Indexable
d = discogs_client.Client('RecordDataFinder/0.1', user_token=os.environ['USER_TOKEN']) search_term = input("Enter Artist Name: ") results = d.search(search_term,type='artist') artist_id = results[0].id artist = d.artist(artist_id) for y in artist.releases: print(y)
Editor is loading...