Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1313:c8317e07c15f
Merge into dev_main
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Mon, 22 Feb 2016 12:19:43 +0000 |
parents | 3abbe1cc81ca |
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()