Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1816:27d44af3df3d
Merge from branch "WAC2016"
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Fri, 04 Dec 2015 10:57:39 +0000 |
parents | 82f43919f385 |
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()