Skip to content

Instantly share code, notes, and snippets.

@nburns
Created June 10, 2013 06:46
Show Gist options
  • Save nburns/5746954 to your computer and use it in GitHub Desktop.
Save nburns/5746954 to your computer and use it in GitHub Desktop.
#!/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)
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