evernote python api で、共有ノートブックを見ることができます
notebooks = noteStore.listLinkedNotebooks(authToken)
print "Found ", len(notebooks), " notebooks:"
for notebook in notebooks:
print " * ", notebook,notebook.guid
でも、ノートのメモを読んでみると
notebooks = noteStore.listLinkedNotebooks(authToken)
print "Found ", len(notebooks), " notebooks:"
for notebook in notebooks:
print " * ", notebook,notebook.guid
filter = NoteStore.NoteFilter()
filter.notebookGuid = notebook.guid
noteList = noteStore.findNotes(authToken,filter,0,10)
#print noteList
for n in noteList.notes:
print n.title, n.guid
このエラーが発生します
evernote.edam.error.ttypes.EDAMNotFoundException:
EDAMNotFoundException(identifier='Notebook.guid', key='x-y-z')