Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save edelgado/30722a40f50f785d70c915a23dab7180 to your computer and use it in GitHub Desktop.
Save edelgado/30722a40f50f785d70c915a23dab7180 to your computer and use it in GitHub Desktop.
Add Text Files as 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();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment