view pythonServer-legacy.py @ 1381:320724a2389b

Test create from existing file, <page> node interfaces are now built and displayed. jQuery included.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Fri, 12 Feb 2016 08:42:15 +0000
parents 279930a008ca
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()