Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 369:fe049caed3ae Dev_main
test_create: Tool now builds using XML DOM to ensure capitalisation is consistent
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Fri, 04 Dec 2015 10:38:13 +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()