Evernote SDK for Python
Project description
Evernote API version 1.22
Overview
This SDK contains wrapper code used to call the Evernote Cloud API from Python.
The SDK also contains a sample script. The code demonstrates the basic use of the SDK for single-user scripts. Real web applications must use OAuth to authenticate to the Evernote service.
Prerequisites
In order to use the code in this SDK, you need to obtain an API key from http://dev.evernote.com/documentation/cloud. You’ll also find full API documentation on that page.
In order to run the sample code, you need a user account on the sandbox service where you will do your development. Sign up for an account at https://sandbox.evernote.com/Registration.action
In order to run the client client sample code, you need a developer token. Get one at https://sandbox.evernote.com/api/DeveloperToken.action
Getting Started - Client
The code in sample/client/EDAMTest.py demonstrates the basics of using the Evernote API, using developer tokens to simplify the authentication process while you’re learning.
Open sample/client/EDAMTest.py
Scroll down and fill in your Evernote developer token.
On the command line, run the following command to execute the script:
export PYTHONPATH=../lib; python EDAMTest.py
Getting Started - OAuth
Web applications must use OAuth to authenticate to the Evernote service. The code in sample/django contains a simple web apps that demonstrate the OAuth authentication process. The application use the Django framework. You don’t need to use Django for your application, but you’ll need it to run the sample code.
Install django, oauth2 and evernote library. You can also use requirements.txt for pip.
Open the file oauth/views.py
Fill in your Evernote API consumer key and secret.
On the command line, run the following command to start the sample app:
python manage.py runserver
Open the sample app in your browser: http://localhost:8000
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.