Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1339:259a0cb6e805
Feature #1504 Sample rate checks are now page wide and occur immediately after parsing the XML
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Tue, 12 Jan 2016 17:26:40 +0000 |
parents | 64541cd9265d |
children |
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()