如何获取向 python SimpleHTTPServer 发出请求的客户端的 IP 地址?

How to get IP address of the client who made request to python SimpleHTTPServer?

我正在使用 python -m SimpleHTTPServer 设置 python 本地服务器,我使用 ngrock 使该服务器 public 可用并且有一些 public IP 地址,例如http://2ee94---.ngrok.io。现在我将 request 设为 public IP 地址。我想从请求中获取 IP 地址。 但是我在终端中获得了唯一的状态。如何获取请求的详细信息(客户端的IP地址)。

HTTP Requests                                                                   
-------------                                                                   

GET  /                         200 OK                                           
GET  /                         200 OK  

我在设置自己的处理程序后完成了它 class,

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)

httpd = SocketServer.TCPServer(("", 8080), MyHandler)

while True:
    httpd.handle_request()