#2 Add code to this repo
Opened 7 years ago by atelic. Modified 7 years ago

Add code to this repo
Eric Barbour • 7 years ago  
file added
+19
@@ -0,0 +1,19 @@ 

+ #! /usr/bin/python2

+ import sys

+ import BaseHTTPServer

+ from SimpleHTTPServer import SimpleHTTPRequestHandler

+ 

+ HandlerClass = SimpleHTTPRequestHandler

+ ServerClass = BaseHTTPServer.HTTPServer

+ Protocol = "HTTP/1.0"

+ 

+ port = int(sys.argv[1]) if sys.argv[1:] else 8000

+ 

+ server_address = ('127.0.0.1', port)

+ 

+ HandlerClass.protocol_version = Protocol

+ httpd = ServerClass(server_address, HandlerClass)

+ 

+ sa = httpd.socket.getsockname()

+ print("Serving HTTP on", sa[0], "port", sa[1], "...")

+ httpd.serve_forever()

no initial comment
Metadata
Changes Summary 1