PLACEHOLDER
Project description
Wrapper around Evernote’s python client that makes it just a little more pleasant to use.
Get an access token
Go here and click GET AN API KEY.
Fill out the information for your Oauth app
Create an account on the development server
add your key and secret to the environment:
$ export ENNO_CONSUMER_KEY=... $ export ENNO_CONSUMER_SECRET=...
Create an access token:
$ enno oauth --sandbox
Export your sandbox access token:
$ export ENNO_SANDBOX=1 $ export ENNO_SANDBOX_ACCESS_TOKEN=...
When you are ready to use your app on your actual live evernote, go here and click Activate an API Key.
When your api key is activated you can then get a real access token:
$ enno oauth $ export ENNO_SANDBOX=0 $ export ENNO_ACCESS_TOKEN=...
Querying notes
from enno import Note
# get the first 10 notes containing foo in the title
q = Note.query.in_title("foo").limit(10)
for n in q.get():
print(n.title)
Creating notes
save text:
from enno import Note
n = Note()
n.title = "this is the title"
n.plain = "this is the content"
n.save()
print(n.guid)
Save html:
n = Note()
n.title = "this is the title"
n.html = "<p>this is the content</p>"
n.save()
print(n.guid)
Evernote saves its notes in a format called ENML, this is available in the .content property:
n = Note()
n.title = "this is the title"
n.html = "<p>this is the content</p>"
print(n.content) # the html will have been converted to enml
Creating Notebooks
from enno import Notebook
nb = Notebook()
nb.name = "foo bar"
nb.save()
print(nb.guid)
Installation
Use pip
$ pip install enno
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
enno-0.0.2.tar.gz
(2.6 kB
view hashes)