Mercurial > hg > webaudioevaluationtool
view pythonServer.py @ 2005:4245465f825f
Merge from the default branch
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Fri, 29 May 2015 12:07:08 +0100 |
parents | d5d7dfdbf335 |
children | e08f2b155d8b |
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()