Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1258:51ac572fb0be
Add PDFs to repository, remove from .hgignore
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Sun, 20 Mar 2016 11:01:26 +0100 |
parents | c07b9e2312ba |
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()