Skip to content

Instantly share code, notes, and snippets.

@fractaledmind
Created September 15, 2013 20:26
Show Gist options
  • Select an option

  • Save fractaledmind/6574081 to your computer and use it in GitHub Desktop.

Select an option

Save fractaledmind/6574081 to your computer and use it in GitHub Desktop.
Example of Evernote Python SDK From https://gist.github.com/Laurent-Sarrazin/5322161
from evernote.api.client import EvernoteClient
dev_token = "put your dev token here"
client = EvernoteClient(token=dev_token)
userStore = client.get_user_store()
user = userStore.getUser()
print user.username
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment