Created
March 7, 2013 18:43
-
-
Save evernotegists/5110606 to your computer and use it in GitHub Desktop.
Getting Resource recognition data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
client = EvernoteClient(token=dev_token, sandbox=False) | |
noteStore = client.get_note_store() | |
note_guid = '5056b825-e447-4eeb-bfda-cf7a86241f49' | |
note = noteStore.getNote(dev_token, note_guid, False, True, True, True) | |
for r in note.resources: | |
recogData = noteStore.getResourceRecognition(r.guid) | |
print recogData |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment