Hello World!

The code for this example is located in the examples.helloworld.manage module.

This example is a simple WSGI script which displays the Hello World! message. To run the script type:

python manage.py

To see all options available type:

python manage.py -h
examples.helloworld.manage.hello(environ, start_response)[source]

The WSGI application handler which returns an iterable over the “Hello World!” message.

examples.helloworld.manage.server(description=None, **kwargs)[source]

Create the WSGIServer running hello().