Skip to content

Instantly share code, notes, and snippets.

@hirokiky
Created November 15, 2013 00:45
Show Gist options
  • Save hirokiky/7477230 to your computer and use it in GitHub Desktop.
Save hirokiky/7477230 to your computer and use it in GitHub Desktop.
One line Web application. Special thanks: @shomah4a
from wsgiref.simple_server import make_server; make_server('', 8888, lambda e, s: [s('200 Ok', []), 'hello'][1]).serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment