【发布时间】:2017-12-15 16:49:01
【问题描述】:
我已经设法让 Evernote Python API 工作并显示笔记(使用 getNoteContent(noteguid) 指令)。
但我只想显示笔记的标题(不是笔记本)。
被称为:
note.title = "Test note from EDAMTest.py"
使用 NoteStore.createNote(note)
创建笔记时我尝试了一千种方法,但从未成功。在网上搜了一下,没有。
老实说,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...
提前感谢您提供任何线索或答案!
【问题讨论】: