view pythonServer-legacy.py @ 1181:6a2e904c519f

Test create from existing file, <page> node interfaces are now built and displayed. jQuery included.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 12 Feb 2016 08:42:15 +0000
parents c44fbf72f7f2
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()