Skip to content

Latest commit

 

History

History
61 lines (48 loc) · 2.1 KB

README.md

File metadata and controls

61 lines (48 loc) · 2.1 KB

evernote_toy_app

About: A simple app that enables browsing of images in your Evernote account (currently sandbox accounts only). Essentially converts your evernote account to a flickr-like utility (doesn't include uploading new images for now)

Demo

Try the demo at http://evernotoy.appspot.com (Currently works with sandbox.evernote only)

Code Structure

  • djangoappengine
    • autoload
    • dbindexer
    • django (a slightly tailored version of the original)
    • djangoappengine
    • djangotoolbox
  • Evernote Python SDK
    • evernote
    • thrift
      • django-social-auth
        • httplib2
        • oauth2
        • openid
        • social_auth
          • evernotoy (Code for the app)

          The app is structured like any other django app. I have added a wrapper over the api in evernote_api.py (Trimmed and appended evernote-django to suit the purpose. Thanks akhaku!)

          Some other libraries/frameworks/sources

          Also using the awesome

          Usage

          To deploy your own version, download the code. Add a new evernote_key_settings.py file in the root directory. Add your Evernote dev keys as -

          EVERNOTE_CONSUMER_KEY = ''
          EVERNOTE_CONSUMER_SECRET = ''

          For deploying on Google App Engine, you'll need to change app.yaml of course.