Last active
May 13, 2019 06:03
-
-
Save mefarazath/3e5a304a3d1c8adcaaeffcfa066299ff to your computer and use it in GitHub Desktop.
Multithreaded Python HTTP Server
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
#!/bin/env python | |
import SocketServer | |
import BaseHTTPServer | |
import SimpleHTTPServer | |
class ThreadingSimpleServer(SocketServer.ThreadingMixIn, | |
BaseHTTPServer.HTTPServer): | |
pass | |
import sys | |
if sys.argv[1:]: | |
port = int(sys.argv[1]) | |
else: | |
port = 8000 | |
server = ThreadingSimpleServer(('', port), SimpleHTTPServer.SimpleHTTPRequestHandler) | |
print("MultiThreadedHttpServer started on port " + str(port)) | |
try: | |
while 1: | |
sys.stdout.flush() | |
server.handle_request() | |
except KeyboardInterrupt: | |
print "Finished" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment