Skip to content

Instantly share code, notes, and snippets.

@bugyt
Last active February 8, 2016 15:08
Show Gist options
  • Save bugyt/d1b67872c784066f0673 to your computer and use it in GitHub Desktop.
Save bugyt/d1b67872c784066f0673 to your computer and use it in GitHub Desktop.
Hello world WSGI Python application
#-*- 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