python抓取网页中链接的静态图片
Python  /  管理员 发布于 7年前   262
本文实例为大家分享了python抓取网页中链接的静态图片的具体代码,供大家参考,具体内容如下
# -*- coding:utf-8 -*- #http://tieba.baidu.com/p/2460150866 #抓取图片地址 from bs4 import BeautifulSoup import urllib.request from time import sleep html_doc = "http://tieba.baidu.com/p/2460150866" def get_image(url): req = urllib.request.Request(url) webpage = urllib.request.urlopen(req) html = webpage.read() soup = BeautifulSoup(html, 'html.parser') #抓取图片地址 #抓取img标签且class为BDE_Image的所有内容 img_src=soup.findAll("img",{'class':'BDE_Image'}) i = 1 for img in img_src: img_url = img.get('src') #抓取src # print(img) req = urllib.request.Request(img_url) u = urllib.request.urlopen(req) data = u.read() with open("AutoCodePng20180119-"+str(i)+".jpg", 'wb') as f: sleep(2) f.write(data) i += 1 def getImg(url): html = urllib.request(url) page = html.read() soup = BeautifulSoup(page, "html.parser") imglist = soup.find_all('img') #发现html中带img标签的数据,输出格式为<img xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx,存入集合 lenth = len(imglist) #计算集合的个数 for i in range(lenth): print imglist[i].attrs['src'] #抓取img中属性为src的信息,例如<img src="https:/article/123456" xxxxxxxxxxxxxxxx,则输出为123456 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
test1 在
opencode + Oh-my-openagent,我的第一个免费的ai编程智能体管家:Sisyphus中评论 test..122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..Zita 在
Google AI Studio升级全栈 vibe coding体验,可直接构建带登录和数据库的应用中评论 111222..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号
