Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 744:1ac0469ff485
Paper: merge, started conclusion. edits
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Thu, 15 Oct 2015 21:30:19 +0100 |
parents | 50c651d27330 |
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()