Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1464:ffb7f1c1f97c
Merge again....
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Thu, 26 Nov 2015 09:39:37 +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()