view pythonServer-legacy.py @ 1151:32ecf01edaa0

Added python 3.x compatible local server (tested on python 3.4.4)
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 15 Jan 2016 09:44:24 +0000
parents 3edcbbea168b
children
line wrap: on
line source
import SimpleHTTPServer
import SocketServer

PORT = 8080

Handler = SimpleHTTPServer.SimpleHTTPRequestHandler

httpd = SocketServer.TCPServer(("", PORT), Handler)

print "serving at port", PORT
httpd.serve_forever()