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

Posted 阿里云的奥斯卡

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 python -m SimpleHTTPServer 快速搭建http服务 测试真实访问IP地址相关的知识,希望对你有一定的参考价值。

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地址的主要内容,如果未能解决你的问题,请参考以下文章

python使用cookie登陆网页

Python基础 -- Python环境的安装pip的使用终端运行python文件Pycharm的安装和使用Pycharm基本设置:设置Python文件默认格式

在python使用SSL(HTTPS)

python 爬虫使用方法分享——安装python

python基础之从认识python到python的使用

python文档翻译之使用python解释器