Skip to content

Instantly share code, notes, and snippets.

@evernotegists
Created March 7, 2013 18:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evernotegists/5110606 to your computer and use it in GitHub Desktop.
Save evernotegists/5110606 to your computer and use it in GitHub Desktop.
Getting Resource recognition data
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