Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1195:b2d06aed8de1
Minor changes to instructions, demo page, and test examples
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Fri, 19 Feb 2016 16:08:54 +0100 |
parents | 07c996307cbd |
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()