Mercurial > hg > webaudioevaluationtool
view pythonServer.py @ 192:566fc4fa2bea
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 | 05327691d28c |
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()