annotate pythonServer.py @ 921:533d51508e93

Stash for project creator
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Mon, 01 Jun 2015 12:55:21 +0100
parents
children e08f2b155d8b
rev   line source
n@921 1 import SimpleHTTPServer
n@921 2 import SocketServer
n@921 3
n@921 4 PORT = 8080
n@921 5
n@921 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
n@921 7
n@921 8 httpd = SocketServer.TCPServer(("", PORT), Handler)
n@921 9
n@921 10 print "serving at port", PORT
n@921 11 httpd.serve_forever()