Mercurial > hg > webaudioevaluationtool
view pythonServer.py @ 1726:edf44ffc32e0
Paper: New Interface picture both wider and less elements for clarity.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Mon, 27 Apr 2015 16:31:46 +0100 |
parents | 76978d8e93d8 |
children | e08f2b155d8b |
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()