annotate pythonServer-legacy.py @ 1174:dd7ba3054bf9

Test create drag and drop active. Auto-builds on page HTML from specification.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Thu, 11 Feb 2016 12:06:54 +0000
parents c44fbf72f7f2
children
rev   line source
n@1116 1 import SimpleHTTPServer
n@1116 2 import SocketServer
n@1116 3
n@1116 4 PORT = 8080
n@1116 5
n@1116 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
n@1116 7
n@1116 8 httpd = SocketServer.TCPServer(("", PORT), Handler)
n@1116 9
n@1116 10 print "serving at port", PORT
n@1116 11 httpd.serve_forever()