python 编写post请求
时间: 2023-05-18 21:04:44 浏览: 148
使用python 2.7来编写post请求接口 。
5星 · 资源好评率100%
可以使用 Python 的 requests 库来编写 post 请求。以下是一个示例代码:
```python
import requests
url = 'http://example.com/api'
data = {'key1': 'value1', 'key2': 'value2'}
response = requests.post(url, data=data)
print(response.text)
```
在这个示例中,我们使用 requests.post() 方法发送一个 post 请求到指定的 URL,并传递一个包含数据的字典作为参数。最后,我们打印出服务器返回的响应内容。
阅读全文