view pythonServer-legacy.py @ 722:964feb6c2065

Paper: added ideas for in-the-browser visualisation, diagnostics and analysis
author Brecht De Man <BrechtDeMan@users.noreply.github.com>
date Wed, 23 Sep 2015 14:42:02 +0200
parents 515b452d4970
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()