一、安装 requests 库
requests
是一个Python第三方库,用于发送HTTP请求。它简洁易用,功能强大,非常适合进行网络请求操作,打开终端输入 pip 命令安装 requests 库。
pip install requests
二、requests基本用法
1、发送 GET 请求
使用 requests.get
方法可以发送GET请求:
import requestsresponse = requests.get('http://httpbin.org/get')
print(response.text) # 打印响应的文本内容
2、发送 POST 请求
使用requests.post
方法可以发送POST请求:
import requestsurl = 'http://httpbin.org/post'# post 请求 可 携带 data(字典类型) 或 json(字符串类型) 参数
data = {"name": "hh","password": "123456"
}json = "hhhh"response = requests.post(url, headers=headers, json=json)print(response.text)
3、响应内容
requests
库返回的 Response
对象包含了服务器响应的所有信息:
response.status_code
:HTTP状态码response.text
:服务器响应的文本内容response.content
:服务器响应的字节流,可使用 decode(encoding="")方法解码 一般为gdk utf8response.json()
:如果响应是JSON格式,可以解析为Python字典
4、请求头 headers
可以添加自定义的HTTP头部:可以提供额外的信息给服务器,帮助服务器更好地处理请求
import requestsheaders = {# 告诉服务器发起请求的客户端类型和版本,这可以用于服务器对不同客户端返回不同内容的情况'User-Agent': 'my-app/0.0.1', # 指定客户端能够处理的响应数据类型'Accept': 'application/json',...
}
response = requests.get('https://api.example.com/data', headers=headers)