首页 > 代码库 > python-一个小爬虫,爬取图片
python-一个小爬虫,爬取图片
import reimport urllib.request# 爬取网页def getHtml(url): page=urllib.request.urlopen(url) html=page.read() return html# 获取图片地址def getImg(html): rule=r‘src="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-一个小爬虫,爬取图片
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。