首页 > 代码库 > python-一个小爬虫,爬取图片

python-一个小爬虫,爬取图片

import reimport urllib.request# 爬取网页def getHtml(url):    page=urllib.request.urlopen(url)    html=page.read()    return html# 获取图片地址def getImg(html):    rule=rsrc="http://www.mamicode.com/(.*?\.jpg)" width    rule_compile=re.compile(rule)    Img_list=re.findall(rule_compile,html.decode(GBK))    return Img_listurl="http://desk.zol.com.cn/bizhi/7005_87014_2.html"html=getHtml(url)# print(getImg(html))#  下载图片到当前目录x=0for i in getImg(html):    urllib.request.urlretrieve(i,%s爬虫.jpg % x)    x+=1 

 

python-一个小爬虫,爬取图片