annotate pythonServer.py @ 1736:88bae176ad02

Fixed Bug 1206: Axis labels now larger and more of a gap between sliders and comment boxes.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Fri, 01 May 2015 16:14:08 +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()