Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 2220:7f44ba6533b4
preSilence and postSilence terms now working
author | Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk> |
---|---|
date | Wed, 13 Apr 2016 16:22:56 +0100 |
parents | 175cf75946f7 |
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()