Beautiful Soup4學(xué)習(xí)筆記(三):遍歷文檔樹

還是之前的字符串作為栗子:

html_doc = """
<html><head><title>The Dormouse's story</title></head>
    <body>
<p class="title"><b>The Dormouse's story</b></p>

<p class="story">Once upon a time there were three little sisters; and their names were
<a  class="sister" id="link1">Elsie</a>,
<a  class="sister" id="link2">Lacie</a> and
<a  class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>

<p class="story">...</p>
"""

from bs4 import BeautifulSoup
soup = BeautifulSoup(html_doc, 'html.parser')

通過這段例子來演示怎樣從文檔的一段內(nèi)容找到另一段內(nèi)容

子節(jié)點

一個Tag可能包含多個字符串或其他的Tag卧檐,這些都是這個Tag的子節(jié)點。Beautiful Soup提供了許多操作和遍歷子節(jié)點的屬性.

注意: Beautiful Soup中字符串節(jié)點不支持這些屬性,因為字符串沒有子節(jié)點

tag的名字

操作文檔樹最簡單的方法就是告訴它你想獲取的tag的name.如果想獲取 <head> 標(biāo)簽,只要用 soup.head :

>>> soup.head
<head><title>The Dormouse's story</title></head>
>>> soup.title
<title>The Dormouse's story</title>

這是個獲取tag的小竅門,可以在文檔樹的tag中多次調(diào)用這個方法.下面的代碼可以獲取<body>標(biāo)簽中的第一個<b>標(biāo)簽:

>>> soup.body.b
<b>The Dormouse's story</b>

通過點取屬性的方式只能獲得當(dāng)前名字的第一個tag:

>>> soup.a
<a class="sister"  id="link1">Elsie</a>

如果想要得到所有的<a>標(biāo)簽,或是通過名字得到比一個tag更多的內(nèi)容的時候,就需要用到 Searching the tree 中描述的方法,比如: find_all()

>>> soup.find_all('a')
[<a class="sister"  id="link1">Elsie</a>, <a class="sister" href="http://example.com/l
acie" id="link2">Lacie</a>, <a class="sister"  id="link3">Tillie</a>]

.contents 和 .children

tag的.contents屬可以將tag的子節(jié)點以列表的方式輸出:

>>> head_tag = soup.head  
>>> head_tag
<head><title>The Dormouse's story</title></head>
>>> head_tag.contents
[<title>The Dormouse's story</title>]
>>> title_tag = head_tag.contents[0]  
>>> title_tag 
<title>The Dormouse's story</title>
>>> title_tag .contents
["The Dormouse's story"]

BeautifulSoup 對象本身一定會包含子節(jié)點,也就是說<html>標(biāo)簽也是 BeautifulSoup 對象的子節(jié)點:

len(soup.contents)
# 1
soup.contents[0].name
# u'html'

這里左痢,我以字符串的形式操作,是有空格存在的。

字符串沒有 .contents屬性碌奉,因為字符串沒有子節(jié)點:

>>> text = title_tag.contents[0]  
>>> text.contents  
Traceback (most recent call last):
  File "<input>", line 1, in <module>
    text.contents
  File "/usr/local/lib/python3.5/site-packages/bs4/element.py", line 730, in __getattr__
    self.__class__.__name__, attr))
AttributeError: 'NavigableString' object has no attribute 'contents'

通過tag的.children生成器,可以對tag的子節(jié)點進行循環(huán):

>>> for child in title_tag.children: 
...     print(child)  
...      
...    
... 
The Dormouse's story

.descendants

.contents 和 .children 屬性僅包含tag的直接子節(jié)點.例如,<head>標(biāo)簽只有一個直接子節(jié)點<title>

>>> head_tag.contents
[<title>The Dormouse's story</title>]

但是<title>標(biāo)簽也包含一個子節(jié)點:字符串 “The Dormouse’s story”,這種情況下字符串 “The Dormouse’s story”也屬于<head>標(biāo)簽的子孫節(jié)點. .descendants 屬性可以對所有tag的子孫節(jié)點進行遞歸循環(huán) :

>>> for child in head_tag.descendants:
...     print(child)  
...       
<title>The Dormouse's story</title>
The Dormouse's story

上面的例子中, <head>標(biāo)簽只有一個子節(jié)點,但是有2個子孫節(jié)點:<head>節(jié)點和<head>的子節(jié)點, BeautifulSoup 有一個直接子節(jié)點(<html>節(jié)點),卻有很多子孫節(jié)點:

len(list(soup.children))
# 1
len(list(soup.descendants))
# 25

這里的還是和用字符串的不一樣寒砖,還是復(fù)制了文檔赐劣。

.string

如果tag只有一個 NavigableString 類型子節(jié)點,那么這個tag可以使用 .string 得到子節(jié)點:

>>> title_tag.string 
"The Dormouse's story"

如果一個tag僅有一個子節(jié)點,那么這個tag也可以使用 .string 方法,輸出結(jié)果與當(dāng)前唯一子節(jié)點的 .string 結(jié)果相同:

>>> head_tag.contents
[<title>The Dormouse's story</title>]
>>> head_tag.string 
"The Dormouse's story"

如果tag包含了多個子節(jié)點,tag就無法確定 .string 方法應(yīng)該調(diào)用哪個子節(jié)點的內(nèi)容, .string 的輸出結(jié)果是 None :

>>> print(soup.html.string) 
None

.strings 和 stripped_strings

如果tag中包含多個字符串,可以使用 .strings來循環(huán)獲攘ǘ肌:

>>> for string in soup.strings: 
...     print(repr(string)) 
...      

'\n'
"The Dormouse's story"
'\n'
'\n'
"The Dormouse's story"
'\n'
'Once upon a time there were three little sisters; and their names were\n'
'Elsie'
',\n'
'Lacie'
' and\n'
'Tillie'
';\nand they lived at the bottom of a well.'
'\n'
'...'
'\n'

注意:看到了吧魁兼,多了兩個換行符和文檔相比

輸出的字符串中可能包含了很多空格或空行,使用 .stripped_strings 可以去除多余空白內(nèi)容:

>>> for string in soup.stripped_strings: 
...     print(repr(string))  
...     
... 
"The Dormouse's story"
"The Dormouse's story"
'Once upon a time there were three little sisters; and their names were'
'Elsie'
','
'Lacie'
'and'
'Tillie'
';\nand they lived at the bottom of a well.'
'...'

全部是空格的行會被忽略掉,段首和段末的空白會被刪除

父節(jié)點

在文檔樹中每個tag或字符串都有父節(jié)點:即被包含在某個tag中

.parent

通過 .parent 屬性來獲取某個元素的父節(jié)點.在文檔中,<head>標(biāo)簽是<title>標(biāo)簽的父節(jié)點:

>>> title_tag = soup.title 
>>> title_tag 
<title>The Dormouse's story</title>
>>> title_tag .parent 
<head><title>The Dormouse's story</title></head>

文檔title的字符串也有父節(jié)點:<title>標(biāo)簽

>>> title_tag.string.parent 
<title>The Dormouse's story</title>

文檔的頂層節(jié)點比如<html>的父節(jié)點是 BeautifulSoup 對象:

>>> html_tag = soup.html 
>>> type(html_tag.parent) 
<class 'bs4.BeautifulSoup'>

BeautifulSoup 對象的 .parent 是None:

>>> print(soup.parent) 
None

.parents

通過元素的 .parents 屬性可以遞歸得到元素的所有父輩節(jié)點,下面的例子使用了 .parents 方法遍歷了<a>標(biāo)簽到根節(jié)點的所有節(jié)點.

>>> link = soup.a 
>>> link 
<a class="sister"  id="link1">Elsie</a>
>>> for parent in link.parents: 
...     if parent is None:
...         print(parent) 
...     else:
...         print(parent.name) 
... 
p
body
html
[document]

兄弟節(jié)點

看一段簡單的栗子:

>>> sibling_soup = BeautifulSoup("<a><b>text1</b><c>text2</c></b></a>") 
>>> print(sibling_soup.prettify())
<html>
 <body>
  <a>
   <b>
    text1
   </b>
   <c>
    text2
   </c>
  </a>
 </body>
</html>

因為<b>標(biāo)簽和<c>標(biāo)簽是同一層:他們是同一個元素的子節(jié)點,所以<b>和<c>可以被稱為兄弟節(jié)點.一段文檔以標(biāo)準(zhǔn)格式輸出時,兄弟節(jié)點有相同的縮進級別.在代碼中也可以使用這種關(guān)系.

.next_sibling 和 .previous_sibling

在文檔樹中,使用 .next_sibling 和 .previous_sibling 屬性來查詢兄弟節(jié)點:

>>> sibling_soup.b.next_sibling
<c>text2</c>
>>> sibling_soup.c.previous_sibling
<b>text1</b>

<b>標(biāo)簽有 .next_sibling 屬性,但是沒有 .previous_sibling 屬性,因為<b>標(biāo)簽在同級節(jié)點中是第一個.同理,<c>標(biāo)簽有 .previous_sibling 屬性,卻沒有 .next_sibling 屬性:

>>> print(sibling_soup.b.previous_sibling) 
None
>>> print(sibling_soup.c.next_sibling) 
None

例子中的字符串“text1”和“text2”不是兄弟節(jié)點,因為它們的父節(jié)點不同:

>>> sibling_soup.b.string
'text1'
>>> print(sibling_soup.b.string.next_sibling) 
None

實際文檔中的tag的 .next_sibling 和 .previous_sibling 屬性通常是字符串或空白. 看看看文檔:

<a  class="sister" id="link1">Elsie</a>
<a  class="sister" id="link2">Lacie</a>
<a  class="sister" id="link3">Tillie</a>

如果以為第一個<a>標(biāo)簽的 .next_sibling 結(jié)果是第二個<a>標(biāo)簽,那就錯了,真實結(jié)果是第一個<a>標(biāo)簽和第二個<a>標(biāo)簽之間的頓號和換行符:

>>> link = soup.a  
>>> link 
<a class="sister"  id="link1">Elsie</a>
>>> link.next_sibling 
',\n'

第二個<a>標(biāo)簽是頓號的 .next_sibling 屬性:

>>> link.next_sibling.next_sibling
<a class="sister"  id="link2">Lacie</a>

.next_siblings 和 .previous_siblings

通過 .next_siblings 和 .previous_siblings 屬性可以對當(dāng)前節(jié)點的兄弟節(jié)點迭代輸出:

>>> for sibling in soup.a.next_siblings:
...     print(repr(sibling))
...      
...  
... 
',\n'
<a class="sister"  id="link2">Lacie</a>
' and\n'
<a class="sister"  id="link3">Tillie</a>
';\nand they lived at the bottom of a well.'
>>> for sibling in soup.find(id="link3").previous_siblings:
...     print(repr(sibling))
...     
... 
' and\n'
<a class="sister"  id="link2">Lacie</a>
',\n'
<a class="sister"  id="link1">Elsie</a>
'Once upon a time there were three little sisters; and their names were\n'

回退和前進

看一下文檔:

<html><head><title>The Dormouse's story</title></head>
<p class="title"><b>The Dormouse's story</b></p>

HTML解析器把這段字符串轉(zhuǎn)換成一連串的事件: “打開<html>標(biāo)簽”,”打開一個<head>標(biāo)簽”,”打開一個<title>標(biāo)簽”,”添加一段字符串”,”關(guān)閉<title>標(biāo)簽”,”打開<p>標(biāo)簽”,等等.Beautiful Soup提供了重現(xiàn)解析器初始化過程的方法.

.next_element 和 .previous_element

.next_element 屬性指向解析過程中下一個被解析的對象(字符串或tag),結(jié)果可能與 .next_sibling 相同,但通常是不一樣的.

這是“愛麗絲”文檔中最后一個<a>標(biāo)簽,它的 .next_sibling
結(jié)果是一個字符串,當(dāng)前的解析過程因為遇到了<a>標(biāo)簽而中斷了:

>>> last_a_tag = soup.find("a",id="link3") 
>>> last_a_tag
<a class="sister"  id="link3">Tillie</a>
>>> last_a_tag.next_sibling
';\nand they lived at the bottom of a well.'

但這個<a>標(biāo)簽的 .next_element 屬性結(jié)果是在<a>標(biāo)簽被解析之后的解析內(nèi)容,不是<a>標(biāo)簽后的句子部分,應(yīng)該是字符串”Tillie”:

>>> last_a_tag.next_element
'Tillie'

這是因為在原始文檔中,字符串“Tillie” 在分號前出現(xiàn),解析器先進入<a>標(biāo)簽,然后是字符串“Tillie”,然后關(guān)閉</a>標(biāo)簽,然后是分號和剩余部分.分號與<a>標(biāo)簽在同一層級,但是字符串“Tillie”會被先解析.
.previous_element 屬性剛好與 .next_element 相反,它指向當(dāng)前被解析的對象的前一個解析對象:

last_a_tag.previous_element
# u' and\n'
last_a_tag.previous_element.next_element
# <a class="sister"  id="link3">Tillie</a>

.next_elements 和 .previous_elements

通過 .next_elements 和 .previous_elements 的迭代器就可以向前或向后訪問文檔的解析內(nèi)容,就好像文檔正在被解析一樣:

>>> for element in last_a_tag.next_elements:
...     print(repr(element)) 
...     
... 
'Tillie'
';\nand they lived at the bottom of a well.'
'\n'
<p class="story">...</p>
'...'
'\n'
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末漠嵌,一起剝皮案震驚了整個濱河市咐汞,隨后出現(xiàn)的幾起案子盖呼,更是在濱河造成了極大的恐慌,老刑警劉巖化撕,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件几晤,死亡現(xiàn)場離奇詭異,居然都是意外死亡植阴,警方通過查閱死者的電腦和手機蟹瘾,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來掠手,“玉大人憾朴,你說我怎么就攤上這事〔移玻” “怎么了伊脓?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長魁衙。 經(jīng)常有香客問我报腔,道長,這世上最難降的妖魔是什么剖淀? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任纯蛾,我火速辦了婚禮,結(jié)果婚禮上纵隔,老公的妹妹穿的比我還像新娘翻诉。我一直安慰自己,他們只是感情好捌刮,可當(dāng)我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布碰煌。 她就那樣靜靜地躺著,像睡著了一般绅作。 火紅的嫁衣襯著肌膚如雪芦圾。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天俄认,我揣著相機與錄音个少,去河邊找鬼。 笑死眯杏,一個胖子當(dāng)著我的面吹牛夜焦,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播岂贩,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼茫经,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起科平,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤褥紫,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后瞪慧,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡部念,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年弃酌,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片儡炼。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡妓湘,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出乌询,到底是詐尸還是另有隱情榜贴,我是刑警寧澤,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布妹田,位于F島的核電站唬党,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏鬼佣。R本人自食惡果不足惜驶拱,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望晶衷。 院中可真熱鬧蓝纲,春花似錦、人聲如沸晌纫。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽锹漱。三九已至箭养,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間凌蔬,已是汗流浹背露懒。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留砂心,地道東北人懈词。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像辩诞,于是被迫代替她去往敵國和親坎弯。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內(nèi)容