如何利用Python爬蟲庫BeautifulSoup獲取對象(標(biāo)簽)名,屬性,內(nèi)容,注釋等操作下面就為大家介紹一下
一、Tag(標(biāo)簽)對象
1.Tag對象與XML或HTML原生文檔中的tag相同。
from bs4 import BeautifulSoup
soup = BeautifulSoup('Extremely bold','lxml')
tag = soup.b
type(tag)
bs4.element.Tag
2.Tag的Name屬性
每個tag都有自己的名字代理,通過.name來獲取
tag.name
'b'
tag.name = "blockquote" # 對原始文檔進(jìn)行修改
tag
Extremely bold
獲取單個屬性
tag['class']
['boldest']
按字典的方式獲取全部屬性
tag.attrs
{'class': ['boldest']}
添加屬性
tag['class'] = 'verybold'
tag['id'] = 1
print(tag)
Extremely bold
del tag['class']
del tag['id']
tag
Extremely bold
多值屬性會返回一個列表
css_soup = BeautifulSoup('
','lxml')Back to the homepage
','lxml')Back to the homepage
xml_soup = BeautifulSoup('
', 'xml')‘body strikeout’
二、可遍歷字符串(NavigableString)
1.字符串常被包含在tag內(nèi),使用NavigableString類來包裝tag中的字符串
```bash
from bs4 import BeautifulSoup
soup = BeautifulSoup('Extremely bold','lxml')
tag = soup.b
print(tag.string)
print(type(tag.string))
Extremely bold
2.一個 NavigableString 字符串與Python中的str字符串相同,通過str() 方法可以直接將 NavigableString 對象轉(zhuǎn)換成str字符串
unicode_string = str(tag.string)
print(unicode_string)
print(type(unicode_string))
Extremely bold
3.tag中包含的字符串不能編輯,但是可以被替換成其它的字符串,用 replace_with() 方法
tag.string.replace_with("No longer bold")
tag
No longer bold
1
三、BeautifulSoup對象 BeautifulSoup 對象表示的是一個文檔的全部內(nèi)容。
大部分時候,可以把它當(dāng)作 Tag 對象,它支持 遍歷文檔樹 和 搜索文檔樹 中描述的大部分的方法。
四、注釋與特殊字符串(Comment)對象
markup = ""
soup = BeautifulSoup(markup,'lxml')
comment = soup.b.string
type(comment)
bs4.element.Comment
Comment 對象是一個特殊類型的 NavigableString 對象
comment
'Hey, buddy. Want to buy a used parser?'
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。