简单爬虫-初次尝试
Posted Kermit.Li
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单爬虫-初次尝试相关的知识,希望对你有一定的参考价值。
import urllib import re def gethtml(url): page = urllib.urlopen(url) html = page.read() return html def getImg(html): reg = r‘src="(.+?\.jpg)" pic_ext‘ imgre = re.compile(reg) imglist = re.findall(imgre,html) x = 0 for imgurl in imglist: urllib.urlretrieve(imgurl,‘%s.jpg‘ %x) x += 1 return imglist url = "http://user.qzone.qq.com/645886209/4" html = getHtml(url) print getImg(html) urllib.urlretrieve(‘http://imgsrc.baidu.com/forum/w%3D580/sign=294db374d462853592e0d229a0ee76f2/e732c895d143ad4b630e8f4683025aafa40f0611.jpg‘,‘0.jpg‘)
以上是关于简单爬虫-初次尝试的主要内容,如果未能解决你的问题,请参考以下文章