view pythonServer.py @ 2031:116db8dc7c71

Scripts: in score plots (individual and boxplot), remove extra marker in legend; automatically save plot.
author Brecht De Man <b.deman@qmul.ac.uk>
date Sat, 06 Jun 2015 11:54:43 +0100
parents abdbbe9a72c4
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()