requests上传图片
时间: 2023-08-24 12:07:57 浏览: 95
上传图片
您可以使用Python的requests库来上传图片。以下是一个简单的示例代码:
```python
import requests
def upload_image(url, image_path):
with open(image_path, 'rb') as file:
files = {'image': file}
response = requests.post(url, files=files)
if response.status_code == 200:
print("图片上传成功!")
else:
print("图片上传失败!")
# 调用示例
upload_image('http://example.com/upload', 'path/to/image.jpg')
```
在示例中,`upload_image`函数接受两个参数:`url`是上传图片的目标URL,`image_path`是本地图片文件的路径。它打开文件并使用`requests.post`方法发送POST请求,将图片作为文件上传到指定的URL。
请注意,这只是一个简单的示例,实际情况中可能需要根据具体的上传接口进行相应的调整。
阅读全文