Created
November 15, 2013 00:45
-
-
Save hirokiky/7477230 to your computer and use it in GitHub Desktop.
One line Web application. Special thanks: @shomah4a
This file contains hidden or 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
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