view server.py @ 53:0abb2dbc2dd1

Renamed trivial-zui.js to web-zui.js, since it's not really trivial anymore.
author Atul Varma <varmaa@toolness.com>
date Fri, 16 May 2008 10:07:38 -0700
parents 394ff157b665
children de12cd84cf0a
line wrap: on
line source

import SimpleHTTPServer
import SocketServer

PORT = 8000

Handler = SimpleHTTPServer.SimpleHTTPRequestHandler

httpd = SocketServer.TCPServer(("", PORT), Handler)

print "Serving files at http://localhost:%d" % PORT

httpd.serve_forever()