Skip to content

Instantly share code, notes, and snippets.

@evernotegists
Created April 4, 2013 20:09
filter = NoteStore.NoteFilter()
filter.ascending = False
spec = NoteStore.NotesMetadataResultSpec()
spec.includeTitle = True
ourNoteList = noteStore.findNotesMetadata(authToken, filter, 0, 100, spec)
wholeNotes = []
for note in ourNoteList.notes:
wholeNote = noteStore.getNote(authToken, note.guid, True)
print "Content length: %d" % wholeNote.contentLength
wholeNotes.append(wholeNote)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment