Mercurial > hg > webaudioevaluationtool
view pythonServer.py @ 877:b1c05278f8fe
SMC Paper: minor changes
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Fri, 19 Jun 2015 12:53:40 +0100 |
parents | 11e6243fafa9 |
children | e08f2b155d8b |
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()