python系列:Python requests.post 上传文件
Python requests.post 上传文件
Python requests.post 上传文件
1、安装 requests
可以使用 pip
来安装 requests 库
,
pip install requests
2、requests.post() 方法
requests.post() 方法
用于发送 HTTP POST 请求
。它接受一个 URL
作为参数,并返回一个 Response 对象
。
参数:
参数 | 描述 |
---|---|
url | 要发送请求的 URL。 |
data | 要发送的数据。可以是字符串、字典或 bytes 对象。如果是字符串,将使用application/x-www-form-urlencoded编码。如果是字典,将使用application/json编码。如果是 bytes 对象,将使用mul |