Guest User

Untitled

a guest
Apr 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. def application(environ, start_response):
  2. start_response("200 OK", [("Content-Type", "text/html")])
  3. return ["<h1>Hello World!</h1>",
  4. "<p>this is a test.</p>"]
  5.  
  6. def make_app(global_conf, **app_conf):
  7. return application
Add Comment
Please, Sign In to add comment