python爬虫爬取图片_利用Python批量爬取网页图片

Python (5) 2024-06-13 16:23

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说
python爬虫爬取图片_利用Python批量爬取网页图片,希望能够帮助你!!!。

前言

本文的文字及图片来源于网络,仅供学习、交流使用,不具有任何商业用途,如有问题请及时联系我们以作处理。

基本环境配置

  • python 3.6
  • pycharm
  • requests

python爬虫爬取图片_利用Python批量爬取网页图片_https://bianchenghao6.com/blog_Python_第1张

 

pip install requests

python爬虫爬取图片_利用Python批量爬取网页图片_https://bianchenghao6.com/blog_Python_第2张

 

python爬虫爬取图片_利用Python批量爬取网页图片_https://bianchenghao6.com/blog_Python_第3张

 

实现代码

import requests
url = 'https://www.duitang.com/napi/vienna/feed/list/by_common/?start=0&limit=18'
headers = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36'
}
response = requests.get(url=url, headers=headers)
html_data = response.json()
dit = html_data['data']['object_list']
for i in dit:
    img_data = i['atlas']['blogs']
    for j in img_data:
        img_url = j['photo']['path']
        name = img_url.split('_')[-1]
        img_url_response = requests.get(url=img_url, headers=headers)
        with open('G:\\python\\demo\\案例\\堆糖网\\图片\\' + name, mode='wb') as f:
            f.write(img_url_response.content)
            print(img_url)

实现效果

python爬虫爬取图片_利用Python批量爬取网页图片_https://bianchenghao6.com/blog_Python_第4张

 

python爬虫爬取图片_利用Python批量爬取网页图片_https://bianchenghao6.com/blog_Python_第5张

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

发表回复