Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 318:85f05a29a01a WAC2016
Minor edits to paper, updated installation instructions, added to be ignored files (e.g. LaTeX auxiliary files)
author | Brecht De Man <b.deman@qmul.ac.uk> |
---|---|
date | Wed, 30 Sep 2015 18:34:40 +0200 |
parents | e08f2b155d8b |
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()