Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 539:4a69b3ba474d Dev_main
Bug #1583 Fix. Popup buttons hidden on successful submission.
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Mon, 22 Feb 2016 12:44:55 +0000 |
parents | e08f2b155d8b |
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()