moonlove
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()

http://www.linuxjournal.com/content/tech-tip-really-simple-http-server-python

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2019-10-20
  • 2021-08-29
  • 2021-07-20
  • 2021-11-16
  • 2022-01-12
猜你喜欢
  • 2021-12-16
  • 2021-09-07
  • 2021-10-13
  • 2021-12-06
相关资源
相似解决方案