Mercurial > hg > webaudioevaluationtool
view pythonServer.py @ 1725:0afffdd75c7f
Paper: More of Josh's comments. Expanded conclusions.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Mon, 27 Apr 2015 15:50:47 +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()