赞
踩
import requests
# 图片的URL地址
url = 'https://book.pep.com.cn/1212001402143/files/mobile/1.jpg?240301113921'
# 发送HTTP GET请求
response = requests.get(url)
# 检查请求是否成功
if response.status_code == 200:
# 打开一个文件用于写入
with open('downloaded_image.jpg', 'wb') as file:
# 将图片内容写入文件
file.write(response.content)
print('图片已成功下载并保存到本地。')
else:
print('图片下载失败,状态码:', response.status_code)
------------------------以上为示例代码---------------------------------
补充:需要有requests的库,没有的话,先执行pip install requests
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。