Runawebserverwithpython: Difference between revisions
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
local= | local= | ||
import sys | import sys | ||
import BaseHTTPServer | import BaseHTTPServer | ||
from SimpleHTTPServer import SimpleHTTPRequestHandler | from SimpleHTTPServer import SimpleHTTPRequestHandler | ||
HandlerClass = SimpleHTTPRequestHandler | HandlerClass = SimpleHTTPRequestHandler | ||
ServerClass = BaseHTTPServer.HTTPServer | ServerClass = BaseHTTPServer.HTTPServer | ||
Protocol = "HTTP/1.0" | Protocol = "HTTP/1.0" | ||
if sys.argv[1:]: | if sys.argv[1:]: | ||
port = int(sys.argv[1]) | port = int(sys.argv[1]) | ||
else: | else: | ||
port = 8000 | port = 8000 | ||
server_address = ('127.0.0.1', port) | server_address = ('127.0.0.1', port) | ||
HandlerClass.protocol_version = Protocol | HandlerClass.protocol_version = Protocol | ||
httpd = ServerClass(server_address, HandlerClass) | httpd = ServerClass(server_address, HandlerClass) | ||
sa = httpd.socket.getsockname() | sa = httpd.socket.getsockname() | ||
print "Serving HTTP on", sa[0], "port", sa[1], "..." | print "Serving HTTP on", sa[0], "port", sa[1], "..." | ||
httpd.serve_forever() | httpd.serve_forever() |
Revision as of 15:32, 1 December 2013
python -m SimpleHTTPServer
you get the message Serving HTTP on 0.0.0.0 port 8000 ...
access via http://127.0.0.1:8000 in the browser
(index or not)
local=
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()