This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# works only on Mac OS X with Evernote desktop client installed | |
# download the ohlife plaintext export and pipe it to this script | |
# eg. $ cat ~/Downloads/ohlife_2012blablabla.txt | python ohlife_to_evernote.py | |
# don't forget to change the notebook title if it's not "Journal" | |
from pipes import quote | |
import sys | |
import os | |
buf = '' |