#!/opt/python2.6/bin/python def application(environ, start_response): """Simplest possible application object""" output = "Hello World" status = '200 OK' response_headers = [('Content-type', 'text/plain'), ('Content-Length', str(len(output)))] start_response(status, response_headers) return [output]