python下载图片实现方法(超简单)

作者:jingxian 时间:2021-12-21 02:17:07 

我们有时候会需要在网上查找并下载图片,当数量比较少的时候,点击右键保存,很轻松就可以实现图片的下载,但是有些图片进行了特殊设置,点击右键没有显示保存选项,或者需要下载很多图片,这样的情况,写一段Python爬虫代码就可以轻松解决!

一、页面抓取


#coding=utf-8
import urllib
def getHtml(url):
 page = urllib.urlopen(url)
 html = page.read()
 return html
html = getHtml("https://tieba.baidu.com/p/5582243679")
print html

页面数据抓取过程定义了getHtml()函数,其作用是给getHtml()传递一个网址,最终进行整个页面的下载。

二、页面数据筛选


import re
import urllib
def getHtml(url):
 page = urllib.urlopen(url)
 html = page.read()
 return html
def getImg(html):
 reg = r'src="(.+?\.jpg)" pic_ext'
 imgre = re.compile(reg)
 imglist = re.findall(imgre,html)
 return imglist
html = getHtml("https://tieba.baidu.com/p/5582243679")
print getImg(html)

页面数据筛选中,定义了一个新的函数getImg(),该函数的功能是筛选出.jpg格式的图片地址。

三、图片下载


#coding=utf-8
import urllib
import re
def getHtml(url):
 page = urllib.urlopen(url)
 html = page.read()
 return html
def getImg(html):
 reg = r'src="(.+?\.jpg)" pic_ext'
 imgre = re.compile(reg)
 imglist = re.findall(imgre,html)
 x = 0
 for imgurl in imglist:
   urllib.urlretrieve(imgurl,'%s.jpg' % x)
   x+=1
html = getHtml("https://tieba.baidu.com/p/5582243679")
print getImg(html)

通过for循环获得所有符合条件的图片网址,并采用urllib.urlretrieve()方法,将远程数据下载到本地,并重新命名!

以下是补充

如下所示:


import urllib.request
response = urllib.request.urlopen('https://www.jb51.net/g/500/600')
cat_img = response.read()

with open('cat_500_600.jpg','wb') as f:
f.write(cat_img)

urlopen()括号里既可以是一个字符串也可以是一个request对象,当传入字符串的时候会转换成一个request对象,因此代码

response = urllib.request.urlopen('https://www.jb51.net/g/500/600') 也可以写成

req = urllib.request.Request('https://www.jb51.net/g/500/600')

1、response = urllib.request.urlopen(req)
2、responce还有geturl,info,getcode方法

代码with open('cat_500_600.jpg','wb') as f:

f.write(cat_img)等价于

1、f = open('cat_500_600.jpg','wb')

2、try:

3、 data = f.write(cat_img)

4、finally:

5、 f.close()

标签:python,下载图片
0
投稿

猜你喜欢

  • Pytorch之如何dropout避免过拟合

    2023-11-29 15:11:05
  • python:目标检测模型预测准确度计算方式(基于IoU)

    2023-04-17 08:51:19
  • 浅述七大主流数据库

    2011-08-05 18:21:27
  • 悟透JavaScript

    2008-05-29 22:15:00
  • golang gorm错误处理事务以及日志用法示例

    2024-04-25 13:18:50
  • PHP实现图片上传并压缩

    2024-05-22 10:06:09
  • python matplotlib实现将图例放在图外

    2021-11-19 06:55:45
  • Python中的 ansible 动态Inventory 脚本

    2022-10-23 07:53:08
  • PHP面向对象教程之自定义类

    2024-05-11 09:23:46
  • 深入SQL截取字符串(substring与patindex)的详解

    2024-01-27 16:16:24
  • Windows下MySQL 8.0.29 安装和删除图文教程

    2024-01-21 20:18:29
  • Django celery异步任务实现代码示例

    2021-12-10 21:38:40
  • python中set()函数简介及实例解析

    2022-05-15 17:12:24
  • python中正则表达式与模式匹配

    2023-08-25 22:54:59
  • 搞清楚 Python traceback的具体使用方法

    2022-10-04 07:00:15
  • asp如何做一个看他爱不爱你的小测验?

    2010-07-11 21:16:00
  • 对Tensorflow中的矩阵运算函数详解

    2021-04-29 12:08:53
  • Python数据存储之 h5py详解

    2023-09-18 00:04:48
  • Python实现统计图像连通域的示例详解

    2022-12-05 09:13:05
  • 远程登录MySQL服务(小白入门篇)

    2024-01-19 09:02:56
  • asp之家 网络编程 m.aspxhome.com