Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 312:8aefcf569e7b WAC2016
Paper: added ideas for in-the-browser visualisation, diagnostics and analysis
author | Brecht De Man <b.deman@qmul.ac.uk> |
---|---|
date | Wed, 23 Sep 2015 14:42:02 +0200 |
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()