Mercurial > hg > webaudioevaluationtool
annotate pythonServer.py @ 174:b19712875046
Feature #1232: <commentBoxPrefix> node now in <interface> of audioHolder. If not specified, default is 'Comment on track'
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Thu, 04 Jun 2015 10:06:42 +0100 |
parents | 05327691d28c |
children | e08f2b155d8b |
rev | line source |
---|---|
nicholas@10 | 1 import SimpleHTTPServer |
nicholas@10 | 2 import SocketServer |
nicholas@10 | 3 |
nicholas@10 | 4 PORT = 8080 |
nicholas@10 | 5 |
nicholas@10 | 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler |
nicholas@10 | 7 |
nicholas@10 | 8 httpd = SocketServer.TCPServer(("", PORT), Handler) |
nicholas@10 | 9 |
nicholas@10 | 10 print "serving at port", PORT |
nicholas@10 | 11 httpd.serve_forever() |