Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 344:c0bf5d39cb9c WAC2016
Hitting enter in any pop-up goes to the next window (or submits, or starts the test)
author | Brecht De Man <b.deman@qmul.ac.uk> |
---|---|
date | Wed, 18 Nov 2015 11:08:52 +0100 |
parents | e08f2b155d8b |
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()