
- Beautiful Soup 教程
- Beautiful Soup - 首頁
- Beautiful Soup - 概述
- Beautiful Soup - 網頁抓取
- Beautiful Soup - 安裝
- Beautiful Soup - 解析頁面
- Beautiful Soup - 物件型別
- Beautiful Soup - 檢查資料來源
- Beautiful Soup - 抓取HTML內容
- Beautiful Soup - 透過標籤導航
- Beautiful Soup - 透過ID查詢元素
- Beautiful Soup - 透過類查詢元素
- Beautiful Soup - 透過屬性查詢元素
- Beautiful Soup - 搜尋樹
- Beautiful Soup - 修改樹
- Beautiful Soup - 解析文件的一部分
- Beautiful Soup - 查詢元素的所有子元素
- Beautiful Soup - 使用CSS選擇器查詢元素
- Beautiful Soup - 查詢所有註釋
- Beautiful Soup - 從HTML中抓取列表
- Beautiful Soup - 從HTML中抓取段落
- BeautifulSoup - 從HTML中抓取連結
- Beautiful Soup - 獲取所有HTML標籤
- Beautiful Soup - 獲取標籤內的文字
- Beautiful Soup - 查詢所有標題
- Beautiful Soup - 提取標題標籤
- Beautiful Soup - 提取郵箱ID
- Beautiful Soup - 抓取巢狀標籤
- Beautiful Soup - 解析表格
- Beautiful Soup - 選擇第n個子元素
- Beautiful Soup - 透過標籤內的文字搜尋
- Beautiful Soup - 刪除HTML標籤
- Beautiful Soup - 刪除所有樣式
- Beautiful Soup - 刪除所有指令碼
- Beautiful Soup - 刪除空標籤
- Beautiful Soup - 刪除子元素
- Beautiful Soup - find vs find_all
- Beautiful Soup - 指定解析器
- Beautiful Soup - 比較物件
- Beautiful Soup - 複製物件
- Beautiful Soup - 獲取標籤位置
- Beautiful Soup - 編碼
- Beautiful Soup - 輸出格式
- Beautiful Soup - 漂亮列印
- Beautiful Soup - NavigableString 類
- Beautiful Soup - 將物件轉換為字串
- Beautiful Soup - 將HTML轉換為文字
- Beautiful Soup - 解析XML
- Beautiful Soup - 錯誤處理
- Beautiful Soup - 故障排除
- Beautiful Soup - 移植舊程式碼
- Beautiful Soup - 函式參考
- Beautiful Soup - contents 屬性
- Beautiful Soup - children 屬性
- Beautiful Soup - string 屬性
- Beautiful Soup - strings 屬性
- Beautiful Soup - stripped_strings 屬性
- Beautiful Soup - descendants 屬性
- Beautiful Soup - parent 屬性
- Beautiful Soup - parents 屬性
- Beautiful Soup - next_sibling 屬性
- Beautiful Soup - previous_sibling 屬性
- Beautiful Soup - next_siblings 屬性
- Beautiful Soup - previous_siblings 屬性
- Beautiful Soup - next_element 屬性
- Beautiful Soup - previous_element 屬性
- Beautiful Soup - next_elements 屬性
- Beautiful Soup - previous_elements 屬性
- Beautiful Soup - find 方法
- Beautiful Soup - find_all 方法
- Beautiful Soup - find_parents 方法
- Beautiful Soup - find_parent 方法
- Beautiful Soup - find_next_siblings 方法
- Beautiful Soup - find_next_sibling 方法
- Beautiful Soup - find_previous_siblings 方法
- Beautiful Soup - find_previous_sibling 方法
- Beautiful Soup - find_all_next 方法
- Beautiful Soup - find_next 方法
- Beautiful Soup - find_all_previous 方法
- Beautiful Soup - find_previous 方法
- Beautiful Soup - select 方法
- Beautiful Soup - append 方法
- Beautiful Soup - extend 方法
- Beautiful Soup - NavigableString 方法
- Beautiful Soup - new_tag 方法
- Beautiful Soup - insert 方法
- Beautiful Soup - insert_before 方法
- Beautiful Soup - insert_after 方法
- Beautiful Soup - clear 方法
- Beautiful Soup - extract 方法
- Beautiful Soup - decompose 方法
- Beautiful Soup - replace_with 方法
- Beautiful Soup - wrap 方法
- Beautiful Soup - unwrap 方法
- Beautiful Soup - smooth 方法
- Beautiful Soup - prettify 方法
- Beautiful Soup - encode 方法
- Beautiful Soup - decode 方法
- Beautiful Soup - get_text 方法
- Beautiful Soup - diagnose 方法
- Beautiful Soup 有用資源
- Beautiful Soup - 快速指南
- Beautiful Soup - 有用資源
- Beautiful Soup - 討論
Beautiful Soup - 查詢所有註釋
在計算機程式碼中插入註釋被認為是一種良好的程式設計實踐。註釋有助於理解程式的邏輯,也作為文件。你可以在HTML和XML指令碼中添加註釋,就像在用C、Java、Python等語言編寫的程式中一樣。BeautifulSoup API可以幫助識別HTML文件中的所有註釋。
在HTML和XML中,註釋文字寫在<!-- 和 --> 標籤之間。
<!-- Comment Text -->
BeautifulSoup包(內部名稱為bs4)將Comment定義為一個重要的物件。Comment物件是一種特殊的NavigableString物件。因此,在<!-- 和 -->之間找到的任何Tag的string屬性都被識別為Comment。
示例
from bs4 import BeautifulSoup markup = "<b><!--This is a comment text in HTML--></b>" soup = BeautifulSoup(markup, 'html.parser') comment = soup.b.string print (comment, type(comment))
輸出
This is a comment text in HTML <class 'bs4.element.Comment'>
要搜尋HTML文件中所有註釋的出現,我們將使用find_all()方法。沒有任何引數,find_all()返回解析的HTML文件中的所有元素。你可以將關鍵字引數'string'傳遞給find_all()方法。我們將把iscomment()函式的返回值賦給它。
comments = soup.find_all(string=iscomment)
iscomment()函式使用isinstance()函式驗證標籤中的文字是否是註釋物件。
def iscomment(elem): return isinstance(elem, Comment)
comments變數將儲存給定HTML文件中的所有註釋文字。我們在示例程式碼中將使用以下index.html檔案:
<html> <head> <!-- Title of document --> <title>TutorialsPoint</title> </head> <body> <!-- Page heading --> <h2>Departmentwise Employees</h2> <!-- top level list--> <ul id="dept"> <li>Accounts</li> <ul id='acc'> <!-- first inner list --> <li>Anand</li> <li>Mahesh</li> </ul> <li>HR</li> <ul id="HR"> <!-- second inner list --> <li>Rani</li> <li>Ankita</li> </ul> </ul> </body> </html>
以下Python程式抓取上述HTML文件,並查詢其中的所有註釋。
示例
from bs4 import BeautifulSoup, Comment fp = open('index.html') soup = BeautifulSoup(fp, 'html.parser') def iscomment(elem): return isinstance(elem, Comment) comments = soup.find_all(string=iscomment) print (comments)
輸出
[' Title of document ', ' Page heading ', ' top level list', ' first inner list ', ' second inner list ']
上述輸出顯示所有註釋的列表。我們也可以使用for迴圈遍歷註釋集合。
示例
i=0 for comment in comments: i+=1 print (i,".",comment)
輸出
1 . Title of document 2 . Page heading 3 . top level list 4 . first inner list 5 . second inner list
在本章中,我們學習瞭如何提取HTML文件中的所有註釋字串。
廣告