python抓取网页 python抓取网页中的图片示例
人气:0想了解python抓取网页中的图片示例的相关内容吗,在本文为您仔细讲解python抓取网页的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:抓取网页,图片,下面大家一起来学习吧。
复制代码 代码如下:
#coding:utf8
import re
import urllib
def getHTML(url):
page = urllib.urlopen(url)
html = page.read()
return html
def getImg(html,imgType):
reg = r'src="(.*?\.+'+imgType+'!slider)" '
imgre = re.compile(reg)
imgList = re.findall(imgre, html)
x=0
for imgurl in imgList:
print imgurl
urllib.urlretrieve(imgurl, '%s.%s' % (x, imgType))
x =x+1
html= getHTML("//www.qb5200.com")
getImg(html,'jpg')
加载全部内容