Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1873:ef63fca99b56
WAC2016 review updated PDF
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Thu, 25 Feb 2016 11:57:24 +0000 |
parents | ade3acb0cee3 |
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()