示例代码
import http.clientdef print_http_info(host, path):conn = http.client.HTTPConnection(host)method = 'GET'url = pathprint(f"{'-' * 30} 请求信息 {'-' * 30}")print(f"主机: {host}")print(f"方法: {method}")print(f"URL: {url}")headers = {'User-Agent': 'My User Agent 1.0','Content-Type': 'application/json'}print(f"{'-' * 30} 请求头 {'-' * 30}")for key, value in headers.items():print(f"{key}: {value}")print(f"{'-' * 30} 结束 {'-' * 30}")# 发起请求conn.request(method, path, headers=headers)# 获取响应response = conn.getresponse()print(f"{'-' * 30} 响应信息 {'-' * 30}")print(f"状态: {response.status}")print(f"原因: {response.reason}")print(f"{'-' * 30} 响应头 {'-' * 30}")for header, value in response.getheaders():print(f"{header}: {value}")# 打印响应内容print(f"{'-' * 30} 响应内容 {'-' * 30}")print(response.read().decode())
使用示例
print_http_info(‘www.example.com’, ‘/’)
这段代码定义了一个print_http_info函数,它接受主机名和路径作为参数,并使用http.client模块发起一个HTTP请求。然后它打印出请求信息、请求头、响应信息、响应头和响应内容。这个例子展示了如何使用Python来查看和输出HTTP请求和响应的详细信息,这对于调试和学习网络协议是非常有用的。