Questions tagged [pygn]

A Python front end to GraceNote.

See https://github.com/cweichen/pygn This wrapper to the GraceNote web API and rhytm API hides the XML interface from the developer, using Python lists/arrays instead.

2 questions
0
votes
1 answer

GraceNote rhythm API with Pygn

The following works and retrurns a list of semmingly random tracks which GraceNote thinks are similar to Bowe's work: radioPlayList = pygn.createRadio(GRACENOTE_CLIENT_ID, GRACENOTE_USER_ID, artist='Bowie', count='3'); However, I would strongly…
Mawg says reinstate Monica
  • 38,334
  • 103
  • 306
  • 551
-1
votes
2 answers

finding missing id3 tags from mp3

import pygn clientID = '3407104-E4255A7F76297EB4C49C2A9A26112342' # Enter your Client ID here userID = pygn.register(clientID) metadata = pygn.search(clientID=clientID, userID=userID, artist='Nelly', album='', track='Hot In Here') print…