我已经设法使用Evernote Python API工作并显示注释(使用getNoteContent(noteguid)指令)。
但我只想显示标题(不是笔记本)。
被称为:
的那个note.title = "Test note from EDAMTest.py"
使用 NoteStore.createNote创建便笺(注释)
我尝试了一千件事,从未使它成功。在互联网上搜索它,没有。
说实话,Evernote API文档很蹩脚而且过时了。
那么,有人知道怎么做吗?
现在,这是我显示注释内容的方式:
note = note_store.getNoteContent(noteguid)
notestr = ET.fromstring(note)
for child in notestr:
chose = check,' ',child.tail
# that's the en-todo checklist type of note...
提前感谢您提供任何线索或答案!