python的requests怎么put
时间: 2024-06-12 14:09:34 浏览: 103
python requests用法
使用Python的requests库进行PUT请求非常简单。你可以使用requests库的put方法来发送PUT请求,并传递相应的URL和数据。
下面是一个示例代码,展示了如何使用requests库发送PUT请求:
```python
import requests
url = 'http://example.com/api/endpoint'
data = {'key': 'value'}
response = requests.put(url, data=data)
print(response.status_code)
print(response.json())
```
在上面的代码中,我们首先定义了要发送PUT请求的URL和数据。然后,我们使用requests.put方法发送PUT请求,并将URL和数据作为参数传递给该方法。最后,我们可以通过response对象来获取响应的状态码和内容。
注意,如果需要在请求头中添加其他参数,可以通过headers参数传递一个字典来设置请求头。
阅读全文