By @audreyr.
This is a sample Flask project that uses the Consumer Notebook API.
In your terminal::
$ git clone https://github.com/consumernotebook/cn-flask-sample.git
$ cd cn-flask-sample
$ mkvirtualenv cn-flask-sample
$ pip install -r requirements.txt
To run it in debug mode locally::
$ python runserver.py
In your browser, go to http://127.0.0.1:5000/
Note: you can also run it with Foreman, but you won't get the debugger::
$ foreman start
Follow the deployment instructions at https://github.com/zachwill/flask_heroku.
This demo is mostly based on the code from the Flask Heroku project, which is a template to get your Flask app running on Heroku as fast as possible.