Is the set of mood labels provided by gracenote finite? How can we access the full list of all those potential labels?
Thank you
For the record here is how to access the 2 mood levels for a specific track using pygn:
import pygn
clientID = 'yourid#'
userID = pygn.register(clientID)
pygn.searchTrack(clientID, userID, 'James Blake', 'overgrown', 'overgrown')['mood']
Still won't give me the list of all possible moods though...