Mercurial > hg > webaudioevaluationtool
annotate pythonServer-legacy.py @ 1505:a667f80c417e
Added screen shots, edited bib. Some edits to intro, abstract and conclusion.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Thu, 15 Oct 2015 21:17:14 +0100 |
parents | 82f43919f385 |
children |
rev | line source |
---|---|
b@1478 | 1 import SimpleHTTPServer |
b@1478 | 2 import SocketServer |
b@1478 | 3 |
b@1478 | 4 PORT = 8080 |
b@1478 | 5 |
b@1478 | 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler |
b@1478 | 7 |
b@1478 | 8 httpd = SocketServer.TCPServer(("", PORT), Handler) |
b@1478 | 9 |
b@1478 | 10 print "serving at port", PORT |
b@1478 | 11 httpd.serve_forever() |