Mercurial > hg > webaudioevaluationtool
annotate pythonServer-legacy.py @ 1303:ade3acb0cee3
Added score_parse.php separators for CSV
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Tue, 23 Feb 2016 17:11:28 +0000 |
parents | |
children |
rev | line source |
---|---|
nickjillings@1303 | 1 import SimpleHTTPServer |
nickjillings@1303 | 2 import SocketServer |
nickjillings@1303 | 3 |
nickjillings@1303 | 4 PORT = 8080 |
nickjillings@1303 | 5 |
nickjillings@1303 | 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler |
nickjillings@1303 | 7 |
nickjillings@1303 | 8 httpd = SocketServer.TCPServer(("", PORT), Handler) |
nickjillings@1303 | 9 |
nickjillings@1303 | 10 print "serving at port", PORT |
nickjillings@1303 | 11 httpd.serve_forever() |