1 2 3 4 5 6 7 8 9 10 11
#!/usr/bin/env python import BaseHTTPServer import CGIHTTPServer server = BaseHTTPServer.HTTPServer handler = CGIHTTPServer.CGIHTTPRequestHandler server_address = ('localhost', 8008) handler.cgi_directories = ['/'] httpd = server(server_address, handler) httpd.serve_forever()