Mercurial > hg > webaudioevaluationtool
annotate pythonServer-legacy.py @ 1541:c115a0b304b3
Bug Fix #1313: Added 404 crash and dump when audioObject cannot obtain URL.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Wed, 01 Jul 2015 11:11:20 +0100 |
parents | |
children |
rev | line source |
---|---|
nickjillings@1541 | 1 import SimpleHTTPServer |
nickjillings@1541 | 2 import SocketServer |
nickjillings@1541 | 3 |
nickjillings@1541 | 4 PORT = 8080 |
nickjillings@1541 | 5 |
nickjillings@1541 | 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler |
nickjillings@1541 | 7 |
nickjillings@1541 | 8 httpd = SocketServer.TCPServer(("", PORT), Handler) |
nickjillings@1541 | 9 |
nickjillings@1541 | 10 print "serving at port", PORT |
nickjillings@1541 | 11 httpd.serve_forever() |