复制代码代码如下:
# -*- 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)
QQ空间 搜狐微博 人人网 开心网 百度搜藏更多
Tags:下载图片 网页
复制链接收藏本文打印本文关闭本文返回首页
上一篇:使用python将mdb数据库文件导入postgresql数据库示例
下一篇:windows下wxPython开发环境安装与配置方法
相关文章
2013-12-12python正则表达式去掉数字中的逗号(python正则匹配逗号)
2008-09-09比较详细Python正则表达式操作指南(re使用)
2013-04-04重命名批处理python脚本
2014-04-04python读取html中指定元素生成excle文件示例
2008-09-09Python 初始化多维数组代码
2013-11-11详细介绍Python语言中的按位运算符
2014-03-03python读写ini文件示例(python读写文件)
2014-04-04解决python写的windows服务不能启动的问题
2009-04-04Python 自动安装 Rising 杀毒软件
2008-09-09Python 拷贝对象(深拷贝deepcopy与浅拷贝copy)
文章评论
最 近 更 新
python实现目录树生成示例
python复制文件代码实现
ptyhon实现sitemap生成示例
使用python统计文件行数示例分享
Python模块学习 datetime介绍
python实现的阳历转阴历(农历)算法
PYTHON正则表达式 re模块使用说明
python定时采集摄像头图像上传ftp服务器功
python解析xml文件实例分享
使用python搭建Django应用程序步骤及版本
热 点 排 行
Python入门教程 超详细1小时学会
python 中文乱码问题深入分析
比较详细Python正则表达式操作指
Python字符串的encode与decode研
Python open读写文件实现脚本
Python enumerate遍历数组示例应
Python 深入理解yield
Python+Django在windows下的开发
python 文件和路径操作函数小结
python 字符串split的用法分享