view server.py @ 81:38abd7bc4886

Added intro to tutorial text.
author Atul Varma <varmaa@toolness.com>
date Mon, 20 Apr 2009 16:40:48 -0700
parents 6e8585c006bc
children
line wrap: on
line source

import CGIHTTPServer
import BaseHTTPServer

PORT = 8000

Handler = CGIHTTPServer.CGIHTTPRequestHandler

httpd = BaseHTTPServer.HTTPServer(("", PORT), Handler)

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

httpd.serve_forever()