Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1363:d186a0606f59
Updated the Instructions to match recent specification changes. wip.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Tue, 26 Jan 2016 18:03:03 +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()