Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 2145:bcc677a7c759
Removes navigation alert once test is completed. Closes #1647
author | Giulio Moro <giuliomoro@users.noreply.github.com> |
---|---|
date | Sun, 06 Mar 2016 19:24:19 +0000 |
parents | ade3acb0cee3 |
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()