python3用BeautifulSoup抓取图片地址

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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=soup.findAll("img",{class:BDE_Image})
for img in img_src:
    img=img.get(src)   #抓取src
    print(img)

 

以上是关于python3用BeautifulSoup抓取图片地址的主要内容,如果未能解决你的问题,请参考以下文章

python3用BeautifulSoup抓取a标签

python3用BeautifulSoup用字典的方法抓取a标签内的数据

python3用BeautifulSoup用re.compile来匹配需要抓取的href地址

python3用BeautifulSoup抓取id='xiaodeng',且正则包含‘elsie’的标签

爬虫--python3.6+selenium+BeautifulSoup实现动态网页的数据抓取,适用于对抓取频率不高的情况

python3 用requests 保存网页以及BeautifulSoup保存图片,并且在本地可以正常显示文章的内容和图片