Skip to content

Instantly share code, notes, and snippets.

@sanketsudake
Created September 16, 2012 13:47
Show Gist options
  • Save sanketsudake/3732523 to your computer and use it in GitHub Desktop.
Save sanketsudake/3732523 to your computer and use it in GitHub Desktop.
Simple python script to run server
#
# run script by python server.py
# open browser with http://127.0.0.1:8000/
# this will open index.html in current directory as default
#
#
import sys
import BaseHTTPServer
from SimpleHTTPServer import SimpleHTTPRequestHandler
HandlerClass = SimpleHTTPRequestHandler
ServerClass = BaseHTTPServer.HTTPServer
Protocol = "HTTP/1.0"
if sys.argv[1:]:
port = int(sys.argv[1])
else:
port = 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()
@BhabanandaRoy
Copy link

yes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment