bs4知识点

之前对着静觅大神的文章操作的,好久没用了
又忘了
还是得温故知新啊,幸好写了草稿
觉得还是基本功重要,比如说正则

#coding:utf-8

from bs4 import BeautifulSoup
import bs4
html = """
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title" name="dromouse"><b>The Dormouse's story</b></p>
<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1"><!-- Elsie --></a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<b>dido</b>
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
<p class="story">...</p>
"""

soup=BeautifulSoup(html)#创建 beautifulsoup 对象
# soup1=BeautifulSoup(open('index.html', html.parser, from_encoding='utf-8'))#还可以用本地 HTML 文件来创建对象

'''print soup.prettify()#格式化打印出了它的内容,不过已经是unicode了'''
#所有html对象都是4种
#tag,navigablestring.BeautifulSoup,COMMENT

'''1  tag就是标签,查找的是在所有内容中的第一个符合要求的标签'''
print soup.title
print soup.head#.title
print soup.a#居然只有一个.string#打印出它的text

print type(soup.a)#<class 'bs4.element.Tag'>
###tag最重要的两个属性是attrs 和标签名字name
#name标签名字
print soup.name#自身特殊是[document]
print soup.head.name#其余是输出其本身tag head

#attrs得到属性值和属性字典
print soup.p.attrs#获取所有属性字典{'class': ['title'], 'name': 'dromouse'}
print soup.p['class']#得到属性值[title]
soup.p['class']='diod'#改变属性值
print soup.p['class']
del soup.p['class']#删除属性
print soup.p.attrs
soup.p['class']='diod'#增加属性值
print soup.p.attrs

'''2   navigablestring     .string获取标签内部的文字'''
print soup.p.string
print type(soup.p.string)#<class 'bs4.element.NavigableString'>


'''3  BeautifulSoup 对象表示的是一个文档的全部内容,大部分时候当作tag对象
类型,名称,以及属性'''
print type(soup.name)
#<type 'unicode'>
print soup.name
# [document]
print soup.attrs
#{} 空字典

'''4   comment 是特殊的navigablestring,其实输出依旧不包含注释符'''
print soup.a.string
print type(soup.a.string)#<class 'bs4.element.Comment'>


# 因为无法分辨所以先做个判断是comment不,是才输出
if type(soup.a.string)==bs4.element.Comment:
    print soup.a.string


#遍历文本树1.contents 2.children返回的不是list,是个list生成器
#

print soup.head.contents[0]#将tag的子节点以list输出,然后输出第几个
# [<title>The Dormouse's story</title>]
# print soup.body.contents

#
print soup.head.children#<listiterator object at 0x0292DE90>
# 生成器循环取值即可
# # html所有的节点都被打印出来了
# for child in soup.descendants:
#     print child

#     # # h的节点都被打印出来了
# for child in soup.body.children:
#     print child

'''如果一个标签里面没有标签了,
那么 .string 就会返回标签里面的内容。
如果标签里面只有唯一的一个标签了,
那么 .string 也会返回最里面的内容,
如果包含多个子节点就无法确定了,返回None
'''
print soup.head.string
#The Dormouse's story
print soup.title.string
#The Dormouse's story

print soup.html.string
# None

'''多个内容'''
# 多个内容.strings
for string in soup.strings:
    print repr(string)
# u"The Dormouse's story"
# u'\n'
# u"The Dormouse's story"
# u'\n'
# u'Once upon a time there were three little sisters; and their names were\n'
# u',\n'
# u'Lacie'
# u' and\n'
# u'Tillie'
# u';\nand they lived at the bottom of a well.'
# u'\n'
# u'...'

# 多个内容.stripped_strings去除多余空白内容
for string in soup.stripped_strings:
    print(repr(string))
# u"The Dormouse's story"
# u"The Dormouse's story"
# u'Once upon a time there were three little sisters; and their names were'
# u'Elsie'
# u','
# u'Lacie'
# u'and'
# u'Tillie'
# u';\nand they lived at the bottom of a well.'
# u'...'

# 父节点parent
p=soup.p
print p.parent.name#body

content=soup.head.title.string
print content#The Dormouse's story
print content.parent.name#title,因为精确到了string,所以他的爸爸是title

#它的祖上有很多个,所以要for
#parents 属性可以递归得到元素的所有父辈节点
content=soup.head.title.string
print content.parents#<generator object parents at 0x028A9288>
for i in content.parents:
    print i.name

# 兄弟节点 .next_sibling .previous_sibling
# 这两属性通常是字符串或空白,因为空白或者换行也可以被视作一个节点,
# 所以得到的结果可能是空白或者换行,节点不存在即返回None
# print soup.p.next_siblings#<generator object next_siblings at 0x02885288>
print soup.p.next_sibling
print soup.p.previous_sibling

# 全部兄弟节点 .next_siblings .previous_siblings
for sibling in soup.p.next_siblings:
    print repr(sibling)

#前后节点 .next_element .previous_element
#与 .next_sibling  .previous_sibling 不同,
#它并不是针对于兄弟节点,而是在所有节点,不分层次

print soup.head.next_element
print soup.head.next_sibling
#全部前后节点 .next_elements .previous_elements
# .next_elements 和 .previous_elements 的迭代器
# 就可以向前或向后访问文档的解析内容,
# 就好像文档正在被解析一样
for element in soup.head.next_elements:
    print repr(element)

'''# 搜索文档树
# find_all( name是tag , attrs , recursive , text , **kwargs )'''
# 1tag查找与字符串完整匹配的内容,下面的例子用于查找文档中所有的<a>标签
print soup.find_all('a')
#2传正则表达式
#如果传入正则表达式作为参数,
#Beautiful Soup会通过正则表达式的 match() 来匹配内容
import re
for tag in soup.find_all(re.compile('^b')):
    print tag.name
#3传列表
print soup.find_all(['a','b'])
# 4传True
for tag in soup.find_all(True):
    print tag.name
# 5传方法
def hasclassnoid(tag):
    return tag.has_attr('class') and not tag.has_attr('id')
print soup.find_all(hasclassnoid)

# keyword参数,可以id,也可以属性,class不可以但是可以class_
print soup.find_all(id='link2')
print soup.find_all(href=re.compile('elsie'))#href包含了那几个字就可以了
print soup.find_all(id='link1',href=re.compile('elsie'))#可以多个属性

# find_all() 方法的 attrs 参数定义一个字典参数来搜索包含特殊属性的tag
data_soup = BeautifulSoup('<div data-foo="value">foo!</div>')
# data_soup.find_all(data-foo="value")
# SyntaxError: keyword can't be an expression
# data_soup.find_all(attrs={"data-foo": "value"})#返回的是一个list
# [<div data-foo="value">foo!</div>]


# text参数搜索文档中的字符串内容,与name参数一样接受字符串正则列表true
print soup.find_all(text=['Elsie','Lacie'])#可以查找多个list
print soup.find_all(text=re.compile("Dormouse"))
#limit参数
print soup.find_all('a',limit=2)

#tag的 find_all() 方法时,
#Beautiful Soup会检索当前tag的所有子孙节点,
#如果只想搜索tag的直接子节点,可以使用参数
#recursive=False .
print soup.find_all('title',recursive=False)

# 直接返回结果,不是list
# find find_all
# find_parents() find_parent
# find_next_siblings()  find_next_sibling()
# find_previous_siblings()  find_previous_sibling()
# find_all_next()  find_next()
# find_all_previous() 和 find_previous()

###############css选择器返回list
# select 方法返回的结果都是列表形式,
# 可以遍历形式输出,
# 然后用 get_text() 方法来获取它的内容。
soup.select('a')
#tag,class,id,属性以及组合查找子标签查找均可
#一个tag多个class属性
# soup.select('tagname.class1.class2')[0]
# soup.find('tagname', class_=['class1', 'class2'])

soup = BeautifulSoup(html, 'lxml')
print type(soup.select('title'))
print soup.select('title')[0].get_text()

for title in soup.select('title'):
    print title.get_text()

from bs4.diagnose import diagnose
data = open(bad.html).read()diagnose(data)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,376评论 25 707
  • 有时候不喜欢火车。因为他的离开是让你眼睁睁看着这座城一点一点被抽离,就像一个伤口一点一点被撕拉。他让你走得缓慢,走...
    小e2阅读 139评论 0 0
  • 鱼潜水静月消,桥上伊人独行。 悲秋难自抑,空接黄叶飘零。 风停,风停。 离枝脱翠霜凝。
    金饮善阅读 427评论 0 1
  • 今天很偶然的一个机会,在芙蓉园吃了晚饭。芙蓉园是初恋的家,五年前我也到过这里。一眨眼就五年了,时光匆匆地去了,我走...
    更向远行阅读 158评论 0 0
  • 夏满听蝉颂, 秋深念草蓬。 闲亭泊细雨, 岸草生凉风。 (朱门寒月作,文图版权所有,转载使用请注明)
    姀月阅读 311评论 0 4