Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 727:3b637867eafe
Minor edits to paper, updated installation instructions, added to be ignored files (e.g. LaTeX auxiliary files)
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Wed, 30 Sep 2015 18:34:40 +0200 |
parents | 0b095f66de65 |
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()