annotate pythonServer-legacy.py @ 1481:8be2d08fbe15

Started WAC paper
author Brecht De Man <b.deman@qmul.ac.uk>
date Tue, 22 Sep 2015 19:22:02 +0200
parents
children
rev   line source
b@1481 1 import SimpleHTTPServer
b@1481 2 import SocketServer
b@1481 3
b@1481 4 PORT = 8080
b@1481 5
b@1481 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
b@1481 7
b@1481 8 httpd = SocketServer.TCPServer(("", PORT), Handler)
b@1481 9
b@1481 10 print "serving at port", PORT
b@1481 11 httpd.serve_forever()