Mercurial > hg > webaudioevaluationtool
annotate pythonServer-legacy.py @ 1089:3de455e48d70
Test Create: Move your custom elements into style.css
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Mon, 22 Feb 2016 12:18:55 +0000 |
parents | 3705f68a38b7 |
children |
rev | line source |
---|---|
giuliomoro@1088 | 1 import SimpleHTTPServer |
giuliomoro@1088 | 2 import SocketServer |
giuliomoro@1088 | 3 |
giuliomoro@1088 | 4 PORT = 8080 |
giuliomoro@1088 | 5 |
giuliomoro@1088 | 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler |
giuliomoro@1088 | 7 |
giuliomoro@1088 | 8 httpd = SocketServer.TCPServer(("", PORT), Handler) |
giuliomoro@1088 | 9 |
giuliomoro@1088 | 10 print "serving at port", PORT |
giuliomoro@1088 | 11 httpd.serve_forever() |