python 将文本文件添加为Google Keep Notes

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 将文本文件添加为Google Keep Notes相关的知识,希望对你有一定的参考价值。

#Import a directory of text files as google keep notes.
#Text Filename is used for the title of the note.

import gkeepapi, os

username = 'username@gmail.com'
password = 'your app password'

keep = gkeepapi.Keep()
success = keep.login(username,password)
dir_path = os.path.dirname(os.path.realpath(__file__))
for fn in os.listdir(dir_path):
	if os.path.isfile(fn) and fn.endswith('.txt'):
		with open(fn, 'r') as mf:
			data=mf.read()
			keep.createNote(fn.replace('.txt',''), data)
			keep.sync();

以上是关于python 将文本文件添加为Google Keep Notes的主要内容,如果未能解决你的问题,请参考以下文章

将文本和行添加到文件的开头(Python)

将新行添加到 Google 表格时触发 Python

使用脚本将 Google 电子表格导出到文本文件

将 Google 图片链接及其关键字保存在数据库或文本文件中

Google Chrome 将 XML 呈现为 RSS 提要的文本

GCS - 从 Google Cloud Storage 直接读取文本文件到 python