首页 > 编程 > Python > 正文

python抓取网页中的图片示例

2020-02-23 05:11:42
字体:
来源:转载
供稿:网友

代码如下:
#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.jb51.net")

getImg(html,'jpg')

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表