使用python进行爬虫下载指定网站的图片

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用python进行爬虫下载指定网站的图片相关的知识,希望对你有一定的参考价值。

# coding=utf-8

import urllib
import re


def downloadPage(url):
    h = urllib.urlopen(url)
    return h.read()


def downloadImg(content):
    pattern = r‘src="(.+?\.jpg)" alt‘ #正则匹配图片标签
    m = re.compile(pattern)
    urls = re.findall(m, content)

    for i, url in enumerate(urls):
        urllib.urlretrieve(url, "E:\\222222\\%s.jpg" % (i,)) #图片保存地址


content = downloadPage("http://www.ivsky.com/tupian/meimei_de_fengye_v39839") #图片下载地址
downloadImg(content)

  

以上是关于使用python进行爬虫下载指定网站的图片的主要内容,如果未能解决你的问题,请参考以下文章

python爬虫,一段完整的python爬虫批量下载网站图片资源的代码

大佬带你用 python爬虫获取指定网站所有连接下图片单线程

Python爬虫下载美女图片(不同网站不同方法)

Python爬虫入门:27270图片爬取

Python爬虫实战,零基础初试爬虫下载图片(附源码和分析过程)

Python爬虫下载美女图片(多种方法)