Skip to content

Instantly share code, notes, and snippets.

@plamere
Created January 16, 2014 12:23
Embed
What would you like to do?
Example of listing all Echo Nest genres along with their descriptions
import pyen
en = pyen.Pyen()
response = en.get('genre/list', bucket=['description'])
for g in response['genres']:
print g['name'], '-', g['description']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment