-
-
Save lunaczp/6fc2769917b9123992e5c455482541c4 to your computer and use it in GitHub Desktop.
SimpleHttpServer with ip and port
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| from SimpleHTTPServer import SimpleHTTPRequestHandler | |
| import BaseHTTPServer | |
| def test(HandlerClass=SimpleHTTPRequestHandler, | |
| ServerClass=BaseHTTPServer.HTTPServer): | |
| protocol = "HTTP/1.0" | |
| host = '' | |
| port = 8000 | |
| if len(sys.argv) > 1: | |
| arg = sys.argv[1] | |
| if ':' in arg: | |
| host, port = arg.split(':') | |
| port = int(port) | |
| else: | |
| try: | |
| port = int(sys.argv[1]) | |
| except: | |
| host = sys.argv[1] | |
| server_address = (host, 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() | |
| if __name__ == "__main__": | |
| test() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > python server.py 127.0.0.1 | |
| Serving HTTP on 127.0.0.1 port 8000 ... | |
| > python server.py 127.0.0.1:9000 | |
| Serving HTTP on 127.0.0.1 port 9000 ... | |
| > python server.py 8080 | |
| Serving HTTP on 0.0.0.0 port 8080 ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment