python进行post请求
时间: 2023-02-22 08:58:33 浏览: 40
使用python 2.7来编写post请求接口 。
5星 · 资源好评率100%
使用 Python 发送 POST 请求可以使用第三方库,例如 `requests`。
下面是使用 `requests` 发送 POST 请求的示例代码:
```
import requests
url = "https://www.example.com/api/post"
payload = {
"key1": "value1",
"key2": "value2",
}
response = requests.post(url, data=payload)
print(response.text)
```
在上面的代码中,我们首先导入了 `requests` 库,然后指定了请求的 URL 地址,并在 `payload` 字典中定义了请求的参数。最后,我们使用 `requests.post` 函数发送请求,并使用 `response.text` 获取响应的内容。
阅读全文