Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 731:58c37ecb46eb
Paper: expanded listening test table, added (temporary?) interface table
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Mon, 12 Oct 2015 18:44:57 +0100 |
parents | 0b095f66de65 |
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()