view pythonServer-legacy.py @ 1446:7831cfdc4cca

MUSHRA css restyling for Mac Chrome. Updated Instructions.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Fri, 18 Dec 2015 22:37:16 +0000
parents 1e85294554fe
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()