view pythonServer-legacy.py @ 1968:e3bcb6c59bdd

Paper: Final edit. Spell checked. Submitted version.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Thu, 15 Oct 2015 22:19:29 +0100
parents 82f43919f385
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()