Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 832:00614dce607d
APE: Can drag a slider whilst listening to another fragment
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Fri, 27 Nov 2015 11:08:45 +0000 |
parents | 22ad83e232f7 |
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()