当前位置:AIGC资讯 > 数据采集 > 正文

python 爬虫http2

查看是否是http2请求呢?

打开火狐浏览器

使用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

更新时间 2023-11-08