urlopen()方法的源代码
2021-05-28 23:00
标签:bsp web https 方式 x64 构建 urllib imp rgba urlopen()方法的源代码 标签:bsp web https 方式 x64 构建 urllib imp rgba 原文地址:https://www.cnblogs.com/name-han/p/14763068.htmlimport urllib.request
# 获取目标网址
url = ‘https://www.baidu.com/‘
# 添加请求头
headers = {‘User-Agent‘: ‘Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36‘}
# 构建请求对象
req = urllib.request.Request(url,headers=headers)
# 获取opener对象
opener = urllib.request.build_opener()
# opener对象中的opener方式去请求
resp=opener.open(req)
# 输出对象中的内容
print(resp.read().decode())