view pythonServer.py @ 929:6c3cc1e17311

Score plotting: plot of individual scores and box plot (with optional overlay of selected individual ratings). Uses CSV files as produced by 'score_boxplot.py'.
author Brecht De Man <BrechtDeMan@users.noreply.github.com>
date Sun, 31 May 2015 18:03:13 +0100
parents f427b5805b69
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()