annotate pythonServer.py @ 1677:57815e764542

Merge and updated bib.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Wed, 22 Apr 2015 11:00:58 +0100
parents 4606baf40165
children e08f2b155d8b
rev   line source
b@1641 1 import SimpleHTTPServer
b@1641 2 import SocketServer
b@1641 3
b@1641 4 PORT = 8080
b@1641 5
b@1641 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
b@1641 7
b@1641 8 httpd = SocketServer.TCPServer(("", PORT), Handler)
b@1641 9
b@1641 10 print "serving at port", PORT
b@1641 11 httpd.serve_forever()