python之爬虫-必应壁纸

Posted randysun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之爬虫-必应壁纸相关的知识,希望对你有一定的参考价值。

python之爬虫-必应壁纸

import re
import requests
"""
@author RansySun
@create 2019-07-19-20:26
"""

"""
https://bing.ioliu.cn/?p=1"
https://bing.ioliu.cn/?p=2"
https://bing.ioliu.cn/?p=3"

"""
count  = 1
for i in range(50):
    url = f"https://bing.ioliu.cn/?p=i"
    reponse = requests.get(url)
    data = reponse.text
    # 获取必应壁纸图片的链接
    result_list = re.findall('src="(.*?)"', data)
    g = 0
    for result in result_list: 
        # 处理其他链接
        if g < 4:
            g += 1
            continue
        # 判断是否是图片的链接
        if result.startswith("https"):            
            # 请求图片地址           
            img_response = requests.get(result)
            img_data = img_response.content
            # 获取图片名
            img_name = result.split("/")[-1].split("_")[0]+".jpg"
            img_star_name = str(count) + "_" + img_name
           # 写入图片
            with open(img_star_name, "wb") as fw:
                fw.write(img_data)
                print("爬取成功:", img_star_name)
                fw.flush()
            count += 1
            print(result)

结果:
技术图片

技术图片

以上是关于python之爬虫-必应壁纸的主要内容,如果未能解决你的问题,请参考以下文章

凌晨一点肝文1920×1080高清必应壁纸爬取,只为爬虫小白们入门!!!

记录一次C#爬虫记录,获取必应图片

Python爬虫教程-爬取5K分辨率超清唯美壁纸源码

python爬虫 之 抓取高清图片

Python爬虫 壁纸下载

Python爬虫 壁纸下载