如何从 python http.server 响应中检索数据

问题描述 投票:0回答:0
from http.server import test, ServerHTTPRequestHandler

test(ServerHTTPRequestHandler)

输出:

Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...

10.10.10.10 - - [20/Jul/2023 08:32:33] "GET /?name=test HTTP/1.1" 200 -

如何将上述数据保存到变量中并供以后使用。

如果我使用 ^c 程序就会退出

python-3.x get http.server
© www.soinside.com 2019 - 2024. All rights reserved.