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))

作者:Yogile

出处:https://www.cnblogs.com/Yogile/p/16442602.html

版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。

posted @   Yogile  阅读(642)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· 上周热点回顾(2.24-3.2)
more_horiz
keyboard_arrow_up light_mode palette
选择主题
点击右上角即可分享
微信分享提示