Last active
February 8, 2016 15:08
-
-
Save bugyt/d1b67872c784066f0673 to your computer and use it in GitHub Desktop.
Hello world WSGI Python application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-*- coding: utf-8 -*- | |
def application(environ, start_response): | |
import sys | |
pvar = 'Hello world !!' | |
output = pvar.encode('utf8') | |
# output = sys.version.encode('utf8') | |
status = '200 OK' | |
headers = [('Content-type', 'text/plain'), | |
('Content-Length', str(len(output)))] | |
start_response(status, headers) | |
yield output |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment