生成一段实现requests.post发送http请求的代码
时间: 2024-02-15 22:55:37 浏览: 118
httpclient发送post请求实现代码
好的,以下是一个示例代码:
```python
import requests
url = "http://example.com/api"
data = {"name": "John", "age": 30}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=data, headers=headers)
print(response.status_code)
print(response.json())
```
这段代码使用了`requests`库来发送POST请求,请求的数据格式为JSON,请求头中指定了Content-Type为application/json。你可以将`url`、`data`和`headers`替换为你自己的值。
阅读全文