requests库发送post请求
时间: 2023-10-16 15:10:27 浏览: 79
https发送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.status_code) # 打印状态码
print(response.text) # 打印响应内容
```
在这个例子中,我们定义了一个URL和一个数据字典。然后,我们使用requests.post()函数来发送POST请求,并将响应存储在变量response中。最后,我们打印了状态码和响应内容。
注意,如果需要发送JSON格式的数据,可以使用json参数来代替data参数。例如:
```python
import requests
url = 'http://example.com/api'
data = {'key1': 'value1', 'key2': 'value2'}
response = requests.post(url, json=data)
print(response.status_code) # 打印状态码
print(response.json()) # 打印响应内容
```
在这个例子中,我们使用了json参数而不是data参数来发送JSON格式的数据,并使用response.json()函数来获取响应内容。
阅读全文