python3用BeautifulSoup抓取a标签
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3用BeautifulSoup抓取a标签相关的知识,希望对你有一定的参考价值。
# -*- 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‘) #抓取class=‘app_icon_link‘的a标签 img_src=soup.findAll("a",{‘class‘:‘app_icon_link‘}) #抓取a标签 for img in img_src: img=img.findAll(‘img‘) for k in img: k=k.get(‘src‘) print(k)
以上是关于python3用BeautifulSoup抓取a标签的主要内容,如果未能解决你的问题,请参考以下文章
python3用BeautifulSoup用字典的方法抓取a标签内的数据
python3用BeautifulSoup用re.compile来匹配需要抓取的href地址
python3用BeautifulSoup抓取id='xiaodeng',且正则包含‘elsie’的标签
python3+beautifulSoup4.6抓取某网站小说基础功能设计
爬虫--python3.6+selenium+BeautifulSoup实现动态网页的数据抓取,适用于对抓取频率不高的情况