Mercurial > hg > webaudioevaluationtool
view pythonServer.py @ 1692:a4be9ea53245
Updated the ProjectSpecificationDocument to reflect track sample rate detection
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Thu, 26 Mar 2015 10:35:29 +0000 |
parents | 7148c89ff426 |
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()