Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 772:b1a5d3a0a41f
Updated and merged Instructions
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Mon, 07 Dec 2015 16:11:30 +0100 |
parents | d7f2912bf487 |
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()