python 爬虫http2

查看是否是http2请求呢?

打开火狐浏览器
python 爬虫http2_第1张图片

使用requests爬虫就会失败,所以得使用httpx包

import httpx
client = httpx.Client(http2=True)
# 之后的使用方式和requests一样
# post
result = client.post(url,json=data, headers=headers, cookies=cookies
                                 ).json()
# get
result = client.get(url,headers=headers).text

你可能感兴趣的:(python,python,爬虫,http)