view pythonServer.py @ 1567:e159ee9fc725

Feature #1246: Scrubber bar included. Not interactive yet
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Thu, 11 Jun 2015 10:06:58 +0100
parents 4730207bcae0
children e08f2b155d8b
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()