Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1837:9d9b32eb59fa
Merge
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Sun, 21 Feb 2016 11:18:08 +0000 |
parents | d9b9f707f862 |
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()