python requests的put用法
时间: 2024-05-12 21:09:32 浏览: 147
python requests用法
Python的requests库提供了put方法来发送HTTP PUT请求。PUT请求用于更新或替换服务器上的资源。
使用requests库发送PUT请求的基本语法如下:
```python
import requests
url = 'http://example.com/api/resource'
data = {'key': 'value'}
response = requests.put(url, json=data)
```
其中,url是要请求的URL地址,data是要发送的数据,可以是字典、列表或字符串等。在上面的例子中,我们使用了json参数来指定要发送的数据是JSON格式的。
如果需要在请求头中添加一些自定义的信息,可以使用headers参数,例如:
```python
headers = {'Content-Type': 'application/json'}
response = requests.put(url, json=data, headers=headers)
```
阅读全文