view pythonServer-legacy.py @ 2216:75ef314b5e64

WIP for #2: '<page>' and '<cetup'> nodes have working "poolSize" attribute to determine number of children to take forward.
author Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk>
date Tue, 12 Apr 2016 10:50:52 +0100
parents 175cf75946f7
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()