Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1523:ed1d17b94752
Bug #1391: Fixed for non-looped playback
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Mon, 14 Sep 2015 11:22:38 +0100 |
parents | 68ed6e4ed3de |
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()