requests.post
时间: 2023-10-24 11:09:50 浏览: 86
Python requests.post方法中data与json参数区别详解
requests.post 是 Python 中的一个库,用于发送 HTTP POST 请求。它可以用来向服务器发送数据,比如表单数据、JSON 数据等,并获取服务器的响应。你可以在 Python 中使用 requests.post 发送 POST 请求,例如:
```python
import requests
url = 'http://example.com/api'
payload = {'key1': 'value1', 'key2': 'value2'}
r = requests.post(url, data=payload)
print(r.text)
```
在这个例子中,我们向 http://example.com/api 发送一个 POST 请求,并将 payload 中的数据作为请求的数据。服务器返回的响应可以通过 r.text 来获取。
阅读全文