Serve.py
Revision as of 16:32, 11 November 2013 by Michael Murtaugh (talk | contribs) (Created page with "<source lang="python"> #!/usr/bin/env python import BaseHTTPServer, CGIHTTPServer import cgitb; cgitb.enable() ## This line enables CGI error reporting import sys import ar...")
<source lang="python">
- !/usr/bin/env python
import BaseHTTPServer, CGIHTTPServer import cgitb; cgitb.enable() ## This line enables CGI error reporting import sys import argparse
parser = argparse.ArgumentParser(description='Happy to serve you') parser.add_argument('--port', type=int, default=8000, help='the port number to listen to') args = parser.parse_args() server = BaseHTTPServer.HTTPServer handler = CGIHTTPServer.CGIHTTPRequestHandler server_address = ("", args.port) handler.cgi_directories = ["/cgi-bin"] print "Listening on http://localhost:{}".format(args.port) httpd = server(server_address, handler) httpd.serve_forever() </serve>