Mercurial > hg > webaudioevaluationtool
annotate pythonServer-legacy.py @ 1478:82f43919f385
Paper: Added interface screenshot and box plot example
author | Brecht De Man <b.deman@qmul.ac.uk> |
---|---|
date | Thu, 15 Oct 2015 20:10:00 +0100 |
parents | |
children |
rev | line source |
---|---|
b@1478 | 1 import SimpleHTTPServer |
b@1478 | 2 import SocketServer |
b@1478 | 3 |
b@1478 | 4 PORT = 8080 |
b@1478 | 5 |
b@1478 | 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler |
b@1478 | 7 |
b@1478 | 8 httpd = SocketServer.TCPServer(("", PORT), Handler) |
b@1478 | 9 |
b@1478 | 10 print "serving at port", PORT |
b@1478 | 11 httpd.serve_forever() |