欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

下载给定网页上图片的方法

程序员文章站 2023-11-28 19:59:04
复制代码 代码如下: # -*- coding: utf-8 -*- import re import urllib def gethtml(url): #找出给出网页的源...
复制代码 代码如下:

# -*- coding: utf-8 -*-
import re
import urllib
def gethtml(url):
#找出给出网页的源码
page = urllib.urlopen(url)
html = page.read()
return html

def getimg(html):
#正则
reg = r'src="(.*?\.jpg)"'
#编译正则
imgre = re.compile(reg)
#找出图片地址
imglist = re.findall(imgre,html)
#循环遍历
x = 0
for i in imglist:
urllib.urlretrieve(i,'%s.jpg' % x)
x+=1
html = gethtml(r'http://www.renren.com/')
getimg(html)