Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 579:30ae94f18d3c Dev_main
WAC16: Removed 'Ape Style 2D' from interface list. Renamed 'Ape Style' to 'APE'.
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Mon, 29 Feb 2016 12:13:15 +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()