Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 819:bf38bba18886
stash. test_create question now shows box size options.
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Tue, 13 Oct 2015 10:20:04 +0100 |
parents | 9c579fc05a09 |
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()