Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1456:cacd98e7e1ff
stash. test_create question now shows box size options.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Tue, 13 Oct 2015 10:20:04 +0100 |
parents | 04e8a9c07c7e |
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()