python通过urllib模块获取网页的headers信息

2022-03-11 00:00:00 网页 获取 模块

python通过urllib模块获取网页的headers的全部信息和指定字段的信息

作者:皮蛋编程(https://www.pidancode.com)
创建日期:2022/3/17
修改日期:2022/3/17
功能描述:python通过urllib模块获取网页的headers信息
"""
from urllib import request

url_file = request.urlopen('https://www.pidancode.com/')
print("文档类型是:", url_file.info().get("Content-Type", ""))

输出结果:文档类型是:text/html

print("HTTP响应heads:")
print(url_file.info())

输出结果如下:
Server: nginx/1.19.2
Date: Thu, 17 Mar 2022 00:23:58 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 26958
Connection: close

以上代码在Python3.9环境下测试通过。

相关文章