Mercurial > hg > webaudioevaluationtool
comparison pythonServer.py @ 1680:ba4187ad3857
Updated the Results Specification to reflect node name changes. Also added extra fields to handle pre/post/during extra comments
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Tue, 07 Apr 2015 13:10:50 +0100 |
parents | |
children | e08f2b155d8b |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 1680:ba4187ad3857 |
---|---|
1 import SimpleHTTPServer | |
2 import SocketServer | |
3 | |
4 PORT = 8080 | |
5 | |
6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler | |
7 | |
8 httpd = SocketServer.TCPServer(("", PORT), Handler) | |
9 | |
10 print "serving at port", PORT | |
11 httpd.serve_forever() |