1 2 3 4
def app(environ, start_response): start_response('200 OK', [('content-type', 'text/html')]) return ['Hello, ', environ['REQUEST_METHOD']]