Tutorial

Quick Start

Given: POSIX and virtualenv

Step 1: Make a sandbox:

$ virtualenv foo
$ cd foo
$ . bin/activate

Step 2: Install pando from PyPI:

(foo)$ pip install pando
blah
blah
blah

Step 3: Create a website root:

(foo)$ mkdir www
(foo)$ cd www

Step 4: Create a web page, and start pando inside it:

(foo)$ echo Greetings, program! > index.html.spt
(foo)$ python -m pando
Greetings, program! Welcome to port 8080.

Step 5: Check localhost for your new page!

_images/greetings-program.png