0
나는 getNoteContent (noteguid) 지시문을 사용하여 Evernote Python API 작업 및 노트를 표시해야했습니다.Evernote Python API 표시 노트 제목
그러나 (노트북이 아님)이라는 제목의 을 표시하고 싶습니다.
으로 언급되는 하나
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...
어떤 단서에 미리 감사 또는 답변 : 나는 메모의 내용을 표시하는 방법
는 지금이다!
고맙습니다. 그렇지만 : 권장하지 않습니다. getNoteWithResultSpec을 참조하십시오. 그리고 어떻게 작동하는지 모르겠습니다. – Bibelo
http : // dev.evernote.com/doc/reference/ NoteStore.html # Fn_NoteStore_getNoteWithResultSpec'을 참조하십시오. 노트 제목과 내용이 필요하면 NoteResultspec.includeContent (http://dev.evernote.com/doc/reference/NoteStore.html#Struct_NoteResultSpec)를 true로 설정할 수 있습니다. – kentaro