python下爬某个网页的图片

python下爬某个网页的图片
#coding=utf-8

import re
import urllib

def getHtml(url): #获取url对应得源码 page = urllib.urlopen(url) html = page.read() return html def getImg(html): #获取 reg = rsrc="(.+?\.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 html = getHtml("http://tieba.baidu.com/p/2460150866") #将这个页面的图片都爬下来 #print getImg(html)
python下爬某个网页的图片

 参考:http://www.cnblogs.com/fnng/p/3576154.html

python下爬某个网页的图片,布布扣,bubuko.com

python下爬某个网页的图片

上一篇:python错误 ImportError: No module named setuptools 解决方法[转]


下一篇:高性能线程池