2 Bobo

I have created a directory to do all my Bobo work in.

  1. On UNIX, this is /home/richard/src/bobo

  2. On Win95, this is C:\web\bobo\

You should create a similar directory to work in. For a simple test, create a directory in there called hello. In it place the file hello.py

def hello(name='World'):
    """Display a greeting"""
    return "Hello %s!" % name

From the Bobo distribution, copy cgi_module_publisher.py and CGIResponse.py to the hello directory.