Evernote Python API显示标题的标题

时间:2017-12-15 16:49:02

标签: python api evernote

我已经设法使用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...

提前感谢您提供任何线索或答案!

1 个答案:

答案 0 :(得分:0)

getNoteContent仅返回笔记的内容。如果您使用getNote,则会返回包含注释标题的Note对象。