view pythonServer-legacy.py @ 1405:a9f1b91b6335

Minor fixes to test_create Specification before merge with core.js Specification
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Fri, 04 Dec 2015 18:51:58 +0000
parents 3b9f0bc523d6
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()