Mercurial > hg > webaudioevaluationtool
view pythonServer.py @ 1786:40c9b0a1087f
Small addition to #1238: Filename included.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Sun, 28 Jun 2015 09:52:47 +0100 |
parents | c6decd1db0da |
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()