Spotify Search API wrapper. Under development.
Right now it only abstracts the connection and a few more things, but in the end you have to work with JSON objects.
import sputnik
search = sputnik.search("nine inch nails broken")
print search.['info']['num_results']
>> 119
for track in search['tracks']:
print track['name'] + ' - ' + track['album']['name']
>> Wish - Broken
>> Gave Up - Broken
>> ...
Released under the terms of the MIT License.