Skip to content

Instantly share code, notes, and snippets.

@devjoe
Last active December 24, 2015 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devjoe/6787105 to your computer and use it in GitHub Desktop.
Save devjoe/6787105 to your computer and use it in GitHub Desktop.
Tainan.py 2013.09.28
# From Thinker: http://pastebin.com/yzy0TjRn
import BaseHTTPServer
class handler(BaseHTTPServer.BaseHTTPRequestHandler): pass
handler.do_GET = lambda x: x.wfile.write('\nHello world @ Tainan.py x MOSUT')
BaseHTTPServer.HTTPServer(('', 8000), handler).serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment