码迷,mamicode.com
首页 > 编程语言 > 详细

使用 python -m SimpleHTTPServer 快速搭建http服务 测试真实访问IP地址

时间:2020-05-30 11:05:42      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:handler   self   pre   direct   client   res   ddr   rect   imp   

Python命令: python -m SimpleHTTPServer 8000

Python代码:

import SimpleHTTPServer
import SocketServer


class MyHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
    def handle_one_request(self):
        print(self.client_address[0])
        return SimpleHTTPServer.SimpleHTTPRequestHandler.handle_one_request(self)

print("Serving local directory")
httpd = SocketServer.TCPServer(("", 8080), MyHandler)

while True:
    httpd.handle_request()

技术图片

 

 可返回真实地址 测试web小工具

使用 python -m SimpleHTTPServer 快速搭建http服务 测试真实访问IP地址

标签:handler   self   pre   direct   client   res   ddr   rect   imp   

原文地址:https://www.cnblogs.com/oscarli/p/12990949.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!