网页图片抓取

# -*- coding: utf-8 -*-
import urllib2
import urllib
import re
import os
import easygui as g

def open_url(url):  
    req = urllib2.Request(url)
    req.add_header("User-Agent","Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.99 Safari/537.36")
    page = urllib2.urlopen(req)
    html = page.read().decode("utf-8")
    return html

def get_img(html):
    p = r'http://.*?\.jpg|http://.*?\.png|http://.*?\.gif|https://.*?\.jpg|https://.*?\.png|https://.*?\.gif'
    imglist = re.findall(p,html)
    for each in imglist:        
        filename = (each.split("/")[-1])
        img_url = "http" + each.split("http")[-1]
        with open(u"图片链接.txt","a") as t:
            t.write(img_url+"\n")
        try:                                        
            urllib.urlretrieve(img_url,filename)
        except:
            pass

if __name__ == '__main__':
    try:
        url = g.enterbox(msg=u"请输入要抓取图片的链接:")   
        path_download = g.diropenbox(msg=u"请选择要保存图片的路径",title=u"浏览",default=os.getcwd())
    except:
        exceptionbox()
    os.chdir(path_download) 
    get_img(open_url(url))
    g.msgbox(u"图片抓取完毕!")

这里写图片描述
这里写图片描述
这里写图片描述
这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值