Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1413:568829c2b4a0
STASH: UNSTABLE. Implementing APE multiple sliders.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Tue, 08 Dec 2015 12:01:48 +0000 |
parents | 3b9f0bc523d6 |
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()