Karrigell Tutorial

From Wikibooks, the open-content textbooks collection

Jump to: navigation, search

Karrigell is an Open Source Python web framework

This tutorial explains how to build a simple web based application : the example is a CD collection. The home page will show the list of records, with a counter of visits and a "login" link. People who successfully log in will be able to add / edit / remove records

The first step is to install Karrigell. Download the latest version, unzip it in a folder, open a console window and in this folder run python Karrigell.py. This will start the built-in web server on port 80

If you want another port : python Karrigell.py -P 8080

[edit] Table of Contents

  1. Home page
  2. Managing The Database

[edit] External links