This is a sample Django project written for Linux Magazine to showcase
the python programming language.

The problem description is supplied in 'problem.txt'.

This source code is in the public domain.
See 'license.txt' for more information.

You need to have python 2.3 or greater and django 0.96. (instructions below)

    -Doug Napoleone
    
Running
=======

manage.py runserver

Then point your web browser at:
http://127.0.0.1:8000/

The user is 'admin' and the password is 'admin'.

Enjoy.


Installing
==========

download and install python from http://www.python.org/
All major linux (and Mac) distrobutions already come with python.
(yum install python | emerge python | apt-get install python)

You will need to isntall django 0.96.
This can be found at:
http://www.djangoproject.com/download/

Full instructions for major linux distrobutions can be found here:
http://www.djangoproject.com/documentation/distributions/

Fedora:  yum install Django
Gentoo:  emerge django
Debian:  apt-get install python-django
Unbuntu: apt-get install python-django
