您好,登錄后才能下訂單哦!
這篇文章主要講解了“Python BautifulSoup節(jié)點信息怎么獲取”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Python BautifulSoup節(jié)點信息怎么獲取”吧!
獲取節(jié)點內容:
如果要獲得節(jié)點中的文本內容,可以用 string 或 get_text()
string:只能獲得節(jié)點中的文本內容,如果節(jié)點中有子孫節(jié)點,string就獲取不到內容,返回 None
get_text() 推薦使用:獲取到節(jié)點中包含的所有內容包括子孫節(jié)點中的內容
可以使用get_text() 方法快速得到源文件中的所有文本內容,如 soup.get_text()
使用實例:
待解析的html文本文件如下:id為al的p標簽有子孫節(jié)點,id為bl的span標簽沒有子孫節(jié)點
<!DOCTYPE html> <html lang="en"> <head> <title>test</title> </head> <body> <p class="title"/> <a href="http://localhost:8080" rel="external nofollow" rel="external nofollow" rel="external nofollow" /> <div> <p class="story" id="al"> <a class="s1" href="www.baidu.com" rel="external nofollow" id="l1">a1</a> <a class="s2" href="" id=" rel="external nofollow" rel="external nofollow" l2">a2</a> <a class="s3" href="" id=" rel="external nofollow" rel="external nofollow" l3">a3</a> <span>span</span> </p> <span id="bl"> 方唐鏡 </span> </div> </body> </html>
使用實例1:對p標簽和span標簽進行解析,打印里面的內容
from bs4 import BeautifulSoup #使用 lxml 解析器 soup = BeautifulSoup(open('test.html',encoding='utf-8'),'lxml') list = soup.select('#al')[0] print(list.string) print(list.get_text())
執(zhí)行結果及說明:
用string獲取p標簽的文本內容,因為p標簽有子孫節(jié)點,所以返回None;
get_text()獲取p標簽的文本內容,返回p標簽及子孫節(jié)點中的文本內容;
None # 用 a1 a2 a3
使用實例2:對span標簽進行解析,打印里面的內容
span = soup.select('#bl')[0] print(span.string) print(span.get_text())
執(zhí)行結果及說明:
string獲取span標簽的文本內容,因為span標簽沒有子孫節(jié)點,所以可以返回文本內容;
用get_text()獲取span標簽的文本內容,因為span標簽沒有子孫節(jié)點,所以只返回span標簽的文本內容;
span
方唐鏡
方唐鏡
.name 獲取節(jié)點的名稱
待解析的html文本文件:
<!DOCTYPE html> <html lang="en"> <head> <title>test</title> </head> <body> <p class="title"/> <a href="http://localhost:8080" rel="external nofollow" rel="external nofollow" rel="external nofollow" /> <div> <span id="span" class="c1"> 方唐鏡 </span> </div> </body> </html>
獲取節(jié)點的屬性實例:
from bs4 import BeautifulSoup #使用 lxml 解析器 soup = BeautifulSoup(open('test.html',encoding='utf-8'),'lxml') # 根據class選擇器查找,返回第一個節(jié)點 obj = soup.select('.c1')[0] print(obj.name)
執(zhí)行結果:該節(jié)點為span節(jié)點
span
.attrs 獲取獲取節(jié)點的屬性值,并以字典的形式返回
待解析的html文本文件:
<!DOCTYPE html> <html lang="en"> <head> <title>test</title> </head> <body> <p class="title"/> <a href="http://localhost:8080" rel="external nofollow" rel="external nofollow" rel="external nofollow" /> <div> <span id="span" class="c1"> 方唐鏡 </span> </div> </body> </html>
獲取節(jié)點的屬性實例:
from bs4 import BeautifulSoup #使用 lxml 解析器 soup = BeautifulSoup(open('test.html',encoding='utf-8'),'lxml') # 根據class選擇器查找,返回第一個節(jié)點 obj = soup.select('.c1')[0] print(obj.attrs)
執(zhí)行結果:以字典的形式返回
{'id': 'span', 'class': ['c1']}
可以通過get方法獲得字典里指定屬性的屬性值:有下面三種方法
# 獲取class屬性的屬性值 #方式一(推薦) print(obj.attrs.get('class')) #方式二 print(obj.get('class')) #方式三 print(obj['class'])
執(zhí)行結果:
['c1']
['c1']
['c1']
代碼實例:獲取所有飲品的名稱·
import urllib.request from bs4 import BeautifulSoup from lxml import etree url = 'https://www.starbucks.com.cn/menu/' headers = { 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 SLBrowser/8.0.0.2242 SLBChan/10' } # 定制請求,發(fā)送請求并返回響應對象和html文檔 request = urllib.request.Request(url=url,headers=headers) response = urllib.request.urlopen(request) content = response.read().decode('utf-8') # 使用 lxml 解析器 soup = BeautifulSoup(content,'lxml') # 檢索html文檔,返回列表形式 name_list = soup.select('ul[class="grid padded-3 product"] strong') # 遍歷打印 for name in name_list: print(name.string)
執(zhí)行結果:
感謝各位的閱讀,以上就是“Python BautifulSoup節(jié)點信息怎么獲取”的內容了,經過本文的學習后,相信大家對Python BautifulSoup節(jié)點信息怎么獲取這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。