Evernote API version 1.23
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.
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
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
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
andevernote
library. You can also userequirements.txt
forpip
. -
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