#!/usr/bin/python from BaseHTTPServer import * from SimpleHTTPServer import * port = 8000 httpd = HTTPServer(('',port),SimpleHTTPRequestHandler) httpd.serve_forever()