Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 725:16bafae452a8
Paper: outline, minor edits
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Tue, 29 Sep 2015 20:50:53 +0200 |
parents | 0b095f66de65 |
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()