Поскольку я не могу позвонить в Google notes API, я использую замену Note.
class Note:
def __init__(self, title, other):
self.title = title
self.other = other
def __repr__(self):
return '{} - {}'.format(self.title, self.other)
gnotes = [Note('OneTitle', 'bla'), Note('Ztitle', 'bla'), Note('BTitle', ',bla')]
gnotes = sorted(gnotes, key=lambda x: x.title)
# gnotes = k.keep.find(pinned=False, trashed=False)
for note in gnotes:
print(note)
выход
BTitle - ,bla
OneTitle - bla
Ztitle - bla