首页 > 代码库 > python3用BeautifulSoup抓取图片地址
python3用BeautifulSoup抓取图片地址
# -*- coding:utf-8 -*- #python 2.7 #XiaoDeng #http://tieba.baidu.com/p/2460150866 #抓取图片地址 from bs4 import BeautifulSoup import urllib.request html_doc = "http://tieba.baidu.com/p/2460150866" req = urllib.request.Request(html_doc) webpage = urllib.request.urlopen(req) html = webpage.read() soup = BeautifulSoup(html, ‘html.parser‘) #抓取图片地址 #抓取img标签且class为BDE_Image的所有内容 img_src=http://www.mamicode.com/soup.findAll("img",{‘class‘:‘BDE_Image‘}) for img in img_src: img=img.get(‘src‘) #抓取src print(img)
python3用BeautifulSoup抓取图片地址
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。