python requests 下载图片
时间: 2024-02-28 14:50:23 浏览: 148
Python利用requests模块下载图片实例代码
在Python中,你可以使用`requests`库来下载图片。下面是一个简单的示例代码:
```python
import requests
def download_image(url, save_path):
response = requests.get(url)
if response.status_code == 200:
with open(save_path, 'wb') as file:
file.write(response.content)
print("图片下载成功!")
else:
print("图片下载失败!")
# 调用函数下载图片
image_url = "https://example.com/image.jpg"
save_location = "path/to/save/image.jpg"
download_image(image_url, save_location)
```
在上面的代码中,`download_image`函数接受两个参数:图片的URL和保存路径。它使用`requests.get`方法发送GET请求获取图片的内容,并将内容写入到指定的文件中。
你只需要将`image_url`替换为你要下载的图片的URL,将`save_location`替换为你想要保存图片的路径和文件名即可。
阅读全文