Mercurial > hg > webaudioevaluationtool
view pythonServer.py @ 1544:8e7ce0b36a4d
SMC Paper: Tidying up of margins, added output example (just one audioElement). Updated the options list (compacted some to make room). Removed redundant paragraph. Now under 6 pages.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Fri, 19 Jun 2015 10:40:37 +0100 |
parents | 45363ee3632d |
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()