Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1127:27c1558fba27
MUSHRA now has scale drawn by HTML5 Canvas
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Mon, 11 Jan 2016 10:40:02 +0000 |
parents | 3edcbbea168b |
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()