requests.post PY
时间: 2023-09-27 15:09:46 浏览: 189
requests-py
你可以使用Python的requests库来发送POST请求。下面是一个简单的示例:
```python
import requests
# 设置请求URL和数据
url = 'http://example.com/api'
data = {'key1': 'value1', 'key2': 'value2'}
# 发送POST请求
response = requests.post(url, data)
# 输出响应结果
print(response.text)
```
在上面的代码中,你需要将`url`替换为你要请求的实际URL,`data`是要发送的数据,可以是字典或字符串。然后,使用`requests.post()`方法发送POST请求,并将响应存储在`response`变量中。最后,你可以使用`response.text`打印出响应的内容。
当然,还有其他可选的参数,例如headers、cookies等,可以根据实际需求进行设置。
阅读全文