Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 715:50c651d27330
Paper: Added interface screenshot and box plot example
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Thu, 15 Oct 2015 20:10:00 +0100 |
parents | |
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()