Python Wrapper
Example usage:
import py7digital
#Search artist
results = py7digital.search_artist('stones') print results.get_total_result_count()
for artist in results.get_next_page():
print artist.get_name() #, artist.get_image(), artist.get_url(), artist.get_tags()
print '\tTop tracks:'
for top_track in artist.get_top_tracks():
print '\t\t', top_track.get_title(), top_track.get_isrc(), top_track.get_duration()
(forked from Python Wrapper by Òscar Celma)