Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1163:fb062819d956
Updated the Instructions to match recent specification changes. wip.
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Tue, 26 Jan 2016 18:03:03 +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()