实现功能:把http://tieba.baidu.com/p/2460150866上的图片都爬下来保存在本地项目文件里 分为三个step 1.获取页面 2.根据正则表达式获取图片 3.保存图片到本地 代码如下:
#coding=utf-8import urllibimport re#get the pagedef getHtml(url): page = urllib.urlopen(url) html = page.read() return htmldef getImg(html): # get the img from the page reg = r'src="(.+?\.jpg)" pic_ext' imgre = re.compile(reg) imglist = re.findall(imgre,html) # save the img to the project folder x = 0 for imgurl in imglist: urllib.urlretrieve(imgurl,'%s.jpg' % x) x+=1html = getHtml("http://tieba.baidu.com/p/2460150866")print getImg(html)