Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1051:cabeed51943a
Scripts: evaluation_stats.py added to quickly show a report on tests done so far (to be expanded)
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Wed, 01 Jul 2015 11:09:17 +0100 |
parents | 2580a999670f |
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()