Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1057:6dab902304c3
Make explicit that 'next test' in server only relates to 'pseudo-random mode'.
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Thu, 02 Jul 2015 15:44:35 +0100 |
parents | 7aa8862850ef |
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()