File size: 272 Bytes
203f582
 
 
 
 
 
 
1
2
3
4
5
6
7
8
def application(environ, start_response):
    status = '200 OK'
    output = b'Hello World!'
    response_headers = [('Content-type', 'text/plain'),
                    ('Content-Length', str(len(output)))]
    start_response(status, response_headers)
    return [output]