annotate pythonServer-legacy.py @ 1482:81e2a7162d18

Addition of HULTI-GEN interfaces to WAC paper.
author Dave <djmoffat@users.noreply.github.com>
date Wed, 23 Sep 2015 09:13:38 +0100
parents 8be2d08fbe15
children
rev   line source
b@1481 1 import SimpleHTTPServer
b@1481 2 import SocketServer
b@1481 3
b@1481 4 PORT = 8080
b@1481 5
b@1481 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
b@1481 7
b@1481 8 httpd = SocketServer.TCPServer(("", PORT), Handler)
b@1481 9
b@1481 10 print "serving at port", PORT
b@1481 11 httpd.serve_forever()