Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1452:bd5cbaf775cd
Test Create: Delete Buttons included on final checks
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Wed, 25 Nov 2015 09:26:10 +0000 |
parents | |
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()