python request 请求响应头
时间: 2023-11-02 18:50:06 浏览: 80
请求头工具
中如何获取某个字段的值?
可以使用Python中的 requests 库发送请求并获取响应信息。在响应信息中,可以通过访问 headers 属性来获取响应头信息。例如:
import requests
response = requests.get('http://www.example.com/')
content_type = response.headers['Content-Type']
这里获取了响应头中的 Content-Type 字段的值。
阅读全文