Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1110:f53b1098795f
Minor fixes to test_create to match specification (was building empty interface nodes).
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Thu, 18 Feb 2016 12:11:09 +0000 |
parents | 282dfb8076f5 |
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()