#!/usr/bin/env python # -*- coding: utf8 -*- html = """ Impressum

Impressum




""" status = "200 OK" def application(environ, start_response): response_body = html response_headers = [('Content-Type', 'text/html'), ('Content-Length', str(len(response_body.encode('utf8'))))] start_response(status, response_headers) return [response_body.encode('utf8')]