annotate pythonServer-legacy.py @ 1506:131465b92a7a

Paper: merge, started conclusion. edits
author Brecht De Man <b.deman@qmul.ac.uk>
date Thu, 15 Oct 2015 21:30:19 +0100
parents 82f43919f385
children
rev   line source
b@1478 1 import SimpleHTTPServer
b@1478 2 import SocketServer
b@1478 3
b@1478 4 PORT = 8080
b@1478 5
b@1478 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
b@1478 7
b@1478 8 httpd = SocketServer.TCPServer(("", PORT), Handler)
b@1478 9
b@1478 10 print "serving at port", PORT
b@1478 11 httpd.serve_forever()