Flask Tutorial given at linux.conf.au 2014
Python
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
webapp
.gitignore
README.md
requirements.txt

README.md

Writing your first web app using Python and Flask

Getting Started

Clone this repo!

git clone git://github.com/danni/linux-conf-au-flask-tute

Create a local Python environment, this allows you to choose exactly what is and isn't included, and what version, in the Python stack for your application.

virtualenv python_env
. python_env/bin/activate

Install Flask

pip install -r requirements.txt