Python 批量下载图片简单代码
2022/7/5 1:21:52
本文主要是介绍Python 批量下载图片简单代码,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
简单代码
# 导入函数库 import requests import os import time # 创建目录 goalPath = "D:\\test" if not os.path.exists(goalPath): os.mkdir(goalPath) # url 变化部分独立 countL = "" countR = "" imgFormat = ".jpg" startIndex = 1 endIndex = 9 for i in range(1, endIndex + 1): # 延时 time.sleep(0.5) # 定义网址 url = 'https://xxxxx' + countL + '/' + str(i) + countR + imgFormat r = requests.get(url) # 判断文件状态 status = r.status_code if status != 404: # 下载头像文件 with open("D:\\test\\"+ str(i) + imgFormat, "wb") as file: file.write(r.content) # 输出下载结果 print ('已下载头像图片:' + str(i))
这篇关于Python 批量下载图片简单代码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Python基础编程
- 2024-11-25Python编程基础:变量与类型
- 2024-11-25Python编程基础与实践
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南