首页 > 编程 > Python > 正文

Python下载指定页面上图片的方法

2020-01-04 17:28:28
字体:
来源:转载
供稿:网友
这篇文章主要介绍了Python下载指定页面上图片的方法,涉及Python的正则匹配、URL及文件操作相关技巧,需要的朋友可以参考下
 

本文实例讲述了Python下载指定页面上图片的方法。分享给大家供大家参考,具体如下:

#!/usr/bin/python #coding:utf8import reimport urllibdef getHtml(url):  page = urllib.urlopen(url)  html = page.read()  return htmldef getImg(html):  reg = r'src="(.*?/.jpg)" '  imgre = re.compile(reg)  imglist = re.findall(imgre,html)  x = 0  for imgurl in imglist:    urllib.urlretrieve(imgurl,'%s.jpg' % x)    x += 1html = getHtml("http://tieba.baidu.com/p/2394357724")getImg(html)
 

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