Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1060:bf85e8def24c
Scripts: evaluation_stats shows number of total fragments
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Tue, 14 Jul 2015 19:40:58 +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()