Mercurial > hg > webaudioevaluationtool
view pythonServer.py @ 971:6817077251c4
Small changes, mostly removing some double statements and grammer.
author | Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk> |
---|---|
date | Thu, 23 Apr 2015 18:59:54 +0100 |
parents | |
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()