Mercurial > hg > webaudioevaluationtool
annotate pythonServer-legacy.py @ 1105:d2afd2ee8684
Added score_parse.php separators for CSV
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Tue, 23 Feb 2016 17:11:28 +0000 |
parents | |
children |
rev | line source |
---|---|
n@1105 | 1 import SimpleHTTPServer |
n@1105 | 2 import SocketServer |
n@1105 | 3 |
n@1105 | 4 PORT = 8080 |
n@1105 | 5 |
n@1105 | 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler |
n@1105 | 7 |
n@1105 | 8 httpd = SocketServer.TCPServer(("", PORT), Handler) |
n@1105 | 9 |
n@1105 | 10 print "serving at port", PORT |
n@1105 | 11 httpd.serve_forever() |