Skip to content

Instantly share code, notes, and snippets.

@gdemin
gdemin / global.R
Last active August 29, 2015 14:14 — forked from SachaEpskamp/global.R
library("shiny")
library("foreign")
@gdemin
gdemin / txt-to-google-keep-notes.py
Created December 14, 2019 20:21 — forked from sliceofbytes/txt-to-google-keep-notes.py
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)