动漫图片接口整理和爬取

爬取程序已上传github,获取地址:
点击跳转连接

1.动漫图片接口收集

1.该程序收集了网上部分随机图片接口,主要是二次元动漫图片,也有些其他类型的图片,可以查看对应接口文档。

一种转发的,可直接获取文件名,方便去重

收集的随机图片接口,爬取简单方便,对不同网址肯定有一点爬取差别的,需要自己调参数

序号调用url示例文档地址
1https://api.ghser.com/random/pc.php三秋:https://api.ghser.com/acg.html
2https://www.dmoe.cc/random.php樱花:http://www.dmoe.cc/
3https://api.ixiaowai.cn/api/api.php小歪:https://api.ixiaowai.cn/
4https://api.vvhan.com/dongman.html韩小韩:https://api.vvhan.com/dongman.html
5https://api.r10086.com/img-api.php?type=动漫综合1樱道:https://img.r10086.com/
6https://api.yimian.xyz/img?type=moeEEE.DOG:https://www.eee.dog/tech/rand-pic-api.html
7https://acg.toubiec.cn/random.php晓晴博客:https://www.toubiec.cn/318.html
8https://cdn.seovx.com/d/?mom=302夏沫:https://cdn.seovx.com/
9https://api.mtyqx.cn/tapi/random.php墨天逸:https://api.mtyqx.cn/
10https://api.btstu.cn/sjbz/api.php?lx=dongman搏天:https://api.btstu.cn/doc/sjbz.php
11https://api.isoyu.com/aipc_animation.php姬长信(有点慢好像服务器不在国内):https://api.isoyu.com/
12https://api.paugram.com/wallpaper/保罗(图片不适合当壁纸,大量留白):https://api.paugram.com/help/wallpaper

一种重定向的,需要自己命名

不是重定向的网址,可以直接用catchContext()爬取,多线程没弄

13.url = ‘https://img.xjh.me/random_img.php’+‘?type=bg&ctype=age/nature’#岁月小驻,文档文档http://img.xjh.me/,可设定参数返回背景图,默认为头像图
14.url = ‘https://acg.yanwz.cn/api.php’#汐岑,文档https://acg.yanwz.cn/

2.爬取程序代码展示

程序实现了图片爬取的功能,设计了多线程爬取,主要有三个方法,调整设置变量,然后直接在main方法上调用以下方法即可运行。

代码结构分为以下部分:

1.运行需要设置的变量:

# 多线程使用,放入链接,对每个链接开启一个线程进行处理,最多放入n(可设置)个线程,记住,每个链接应该是返回一个只有图片的页面
urls = ['https://api.ghser.com/random/pc.php','https://www.dmoe.cc/random.php',
        'https://api.ixiaowai.cn/api/api.php','https://api.yimian.xyz/img?type=moe',
        'https://acg.toubiec.cn/random.php','https://cdn.seovx.com/d/?mom=302',
        'https://api.mtyqx.cn/tapi/random.php','https://api.btstu.cn/sjbz/api.php?lx=dongman']
#单线程使用
url = 'https://api.ghser.com/random/pc.php'

#全局设置,可修改
threadNum = 4 #开启的最大线程数
pictureNum = 10 #每个线程获取的图片数
ctime = 2 #设定爬取每个网址的间隔时间,一个单位代表一秒
file = "image"#文件地址,该相对路径为当前文件的父文件地址,会自动生成

# 重构请求头,默认请求头容易被防止反爬虫拦截,请在访问前使用开发者模式查看你的浏览器下的访问该网址的请求头内容,找到对应的值填入这里
headers = {#一般只用改User-Agent,还不行的话就全复制下来,还不行换地址
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36 Edg/100.0.1185.50',
}

lock = threading.RLock()#线程锁
errorNum = 0  #错误线程数
errorUrls = [] #错误线程值
globalTotal = 0 #统计开线程后的爬取总数

2.三个方法(可随意选择):
方法一(单线程爬取,可直接用来爬取重定向图片):

#测试爬取图片
def catchContext(url):
    for n in range(pictureNum):
        n = n + 1
        r = rs.get(url, headers=headers)#若出现SSL证书验证问题,可以在请求中设置verify=False
        print(r.headers)
        for i in r.request.headers.items():
            print(i)
        print(r.status_code)
        code = r.status_code
        img = r.content#图片文件内容
        name = r.url#重定向链接
        print(name + "    " + str(n))
        img = Image.open(BytesIO(r.content))
        r = name.split('/')[-1]  # 获取图片名称
        p = r.split('.')[-1]
        print(p)
        if p != 'png' and p != 'jpg':#不是重定向的结果需要自己命名了
            now_time = datetime.now()
            str1 = datetime.strftime(now_time, '%Y%m%d%H%M%S')
            img.save(file + '/' + str1 + ".png")
            print(str1 +"保存成功")
            time.sleep(1)
        else:#重定向的结果不需要自己命名
            img.save(file + '/' + r)
            print(r + "保存成功")
            time.sleep(1)

方法二(只能爬取转发的图片):

#单线程爬取,可直接调用
def catch(url):
    total = 0  # 统计下载的图片数量
    for n in range(pictureNum):#获取图片数量
        n = n + 1
        r = rs.get(url, headers=headers)
        img = r.content  #图片文件内容
        name = r.url#重定向链接
        print(" ")
        print("url:" + name)
        code = r.status_code#返回的状态码
        #imgsize = Image.open(BytesIO(r.content))
        #print(imgsize.size)#图片大小
        r = name.split('/')[-1]#获取图片名称
        print("获取第" + str(n) + "张")
        print(r)
        #存文件
        if not os.path.exists(file):
            print("文件不存在,已创建!")
            os.mkdir(file)
        else:
            print("开始下载图片")
        if code == 200:
            if not os.path.exists(file + r):
                with open(file + "/" + r, mode="wb") as f:
                    # 开始下载
                    f.write(img)
                    print("保存第" + str(n) + "张成功")
                    total = total + 1
            else:
                print("第" + str(n) + "张存在,不重复获取")
        else:
            print("第" + str(n) + "张状态码不正常,文件无法访问")#如果同一地址下出现该问题过多,建议换地址
        time.sleep(0.01)
    print("---------" + url + ": 完成爬取过程,一共下载了" + str(total) + "张图片-----------")


方法三(实现多线程爬取,即同时调用多个url)

#多线程爬取的辅助方法,注意参数修改
def ThreadCatch(url, eEvent):
    print("-------------------------------" + "----------------------------------------")
    print(url + "开起线程")
    print("线程" + threading.current_thread().getName())
    total = 0  # 统计下载的图片数量
    global globalTotal
    global errorNum
    try:
        for n in range(pictureNum):#获取图片数量
            n = n + 1
            r = rs.get(url, headers=headers)
            img = r.content  #图片文件内容
            name = r.url#重定向链接
            print(" ")
            print(threading.current_thread().getName())
            print("url:" + name)
            code = r.status_code#返回的状态码
            #imgsize = Image.open(BytesIO(r.content))
            #print(imgsize.size)#图片大小
            r = name.split('/')[-1]#获取图片名称
            print("获取第" + str(n) + "张")
            print(r)
            #存文件
            if not os.path.exists(file):
                print("文件不存在,已创建!")
                os.mkdir(file)
            else:
                print("开始下载图片")
            if code == 200:
                if not os.path.exists(file + r):
                    with open(file + "/" + r, mode="wb") as f:
                        # 开始下载
                        f.write(img)
                        print("保存第" + str(n) + "张成功" )
                        total = total + 1
                        lock.acquire()#对全局统计数量上锁
                        globalTotal = globalTotal + 1
                        lock.release()#解锁
                else:
                    print("第" + str(n) + "张存在,不重复获取")
            else:
                print("第" + str(n) + "张状态码不正常,文件无法访问")
            time.sleep(ctime)
        print("---------" + url + ": 完成爬取过程,一共下载了" + str(total) + "张图片-----------")
        print(threading.current_thread().getName() + "线程结束")
        print("eEvent.is_set: " + str(eEvent.is_set()))
    except ConnectionError:
        print("[ERROR]:链接错误,结束线程:" + threading.current_thread().getName())
        errorNum = errorNum + 1
        errorUrls.append(threading.current_thread().getName())
    except OSError:
        print("[ERROR]:文件下载错误,可能文件命名原因,结束线程:" + threading.current_thread().getName())
        errorNum = errorNum + 1
        errorUrls.append(threading.current_thread().getName())
    finally:
        eEvent.set()  # 唤醒等待线程

#直接调用该方法实现多线程爬取
def runThread():
    print("--------开起线程执行数据-----------")
    # 创建event事件
    eEvent = threading.Event()
    global urls
    queue = Queue()#等待队列
    size = len(urls)
    n = 0
    li = []
    if size <= threadNum & size > 0:#开启线程最大数
        for t in urls:
            n = n + 1
            th = threading.Thread(target=ThreadCatch, name="Thread-" + str(n), args=(t, eEvent))
            #th = threading.Thread(target=text, name="Thread-" + str(n), args=(t, ))#测试多线程方法
            th.start()
            li.append(th)
        for l in li:
            l.join()#等待所有子线程完成后主线程才结束

    elif size > threadNum:#线程池模拟,生成等待队列,队列中存储数值(url和线程使用状态,0未使用,1使用),简单线程池模拟实现,好难搞啊
        print("始终只同时执行"+str(threadNum)+"个线程")
        for u in urls:
            queue.put(u) #构建等待队列
        while not queue.empty():
            print("当前存活线程数"+ str(threading.active_count())+"存活数包括主线程")
            if threading.active_count() >= threadNum + 1:#判断线程是否为最大最大值,是就进入等待
                eEvent.clear()
                print("eEvent.is_set: " + str(eEvent.is_set()))
                print("主线程等待")
                eEvent.wait()
                print("主线程等待结束,创建新线程")
            d = queue.get()
            print(d)
            n = n + 1
            th = threading.Thread(target=ThreadCatch, name="Thread-" + str(n), args=(d, eEvent))
            #th = threading.Thread(target=text, name="Thread-" + str(n), args=[d, eEvent])#测试多线程方法
            print("尝试开启线程")
            th.start()
            if queue.empty():
                print("所有任务都添加到线程里,主线程等待所有线程执行完毕")
                x = True
                y = 1
                while x == True:#当存活的线程只剩下主线程或超过10分钟后主线程自动结束
                    time.sleep(60)
                    y = y + 1
                    if threading.active_count() == 1 or y >= 10:
                        break
    else:
        print("无线程开启,链接数组中无数据")

爬取程序完整代码已经上传到github上,需要可直接获取:
https://github.com/Six-OneOne/catch-picture

  • 3
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值