Mercurial > hg > webaudioevaluationtool
view pythonServer.py @ 1764:43a367ee8073
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()