我浏览了 docs 的文档gkeepapi
,没有任何功能可以对笔记进行排序。然而,这些注释确实会按照此处打印的顺序出现在 Keep 中:
import gkeepapi
k = gkeeapi.Keep()
k.login('xxxxx@gmail.com', pwd)
gnotes = k.keep.find(pinned=False, trashed=False)
for n in gnotes:
print(n.title)
gnotes = sorted(gnotes, key=lambda x: x.title)
k.sync()
我希望按标题对 gnotes 进行排序,然后对其进行更新,以便当我查看 Google Keep 时,我的笔记按字母顺序排序。