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