Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1465:a5e28606a50e
Core collects navigator information
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Thu, 26 Nov 2015 09:59:22 +0000 |
parents | f6a6b7fd4041 |
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()