annotate pythonServer-legacy.py @ 1115:ddc5a639179a

Updated author list for WAC 2016
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Sun, 21 Feb 2016 11:15:52 +0000
parents
children
rev   line source
n@1115 1 import SimpleHTTPServer
n@1115 2 import SocketServer
n@1115 3
n@1115 4 PORT = 8080
n@1115 5
n@1115 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
n@1115 7
n@1115 8 httpd = SocketServer.TCPServer(("", PORT), Handler)
n@1115 9
n@1115 10 print "serving at port", PORT
n@1115 11 httpd.serve_forever()