(本文为个人学习过程的备忘录(踩坑记录)。内容持续更新)
导入
该库不需要下载。
import requests
发送请求
get 请求
response = requests.get(url='https://xxx', headers=xxx, params=xxx)
url 是必填项,其他选填。
headers 为 dict 格式。如下:
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8',
'Accept-Language': 'en-US,en;q=0.5',
'Accept-Encoding': 'gzip, deflate',
'Connection': 'keep-alive',
'Upgrade-Insecure-Requests': '1'
}
params 为请求参数,可以直接连接在链接后(用? 和& ),也可作为参数传递。params 参数同样可以用 dict 格式。
params = {
'author': '八月长安',
'user': '余庆'
}
post 请求
response = requests.post(url='https://xxx',
headers=headers,
data=data,
json=json_data,
params=params)
url 为必填项,其他选填。
headers 解释同get请求
params 为传递的 payload 数据
处理请求
response.status_code: 返回的状态码。数据类型为 int 为防止编码格式导致的错误,可以在获取 text 之前,使用 **response.encoding = ‘xxx’ 修改编码格式。如:
response.encoding = 'utf-8'
使用 response.text 可获取返回的文本内容。
|