Beautiful Soup
Python的HTML/XML解析程式
Beautiful Soup是一個Python包,功能包括解析HTML、XML文檔、修復含有未閉合標籤等錯誤的文檔(此種文檔常被稱為tag soup)。這個擴展包為待解析的頁面建立一棵樹,以便提取其中的數據,這在網絡數據採集時非常有用。[2]
原作者 | Leonard Richardson |
---|---|
當前版本 |
|
源代碼庫 | |
編程語言 | Python |
類型 | HTML解析庫、網絡數據採集 |
許可協議 | Python軟件基金會許可證 (Beautiful Soup 3及以前) MIT許可證(Beautiful 4及以後)[2] |
網站 | www |
在2021年,Python 2.7的官方支持終止,BeautifulSoup發行版4.9.3是支持Python 2.7的最後版本[3]。
示例代碼
編輯#!/usr/bin/env python3
# Anchor extraction from HTML document
from bs4 import BeautifulSoup
from urllib.request import urlopen
with urlopen('https://en.wiki.x.io/wiki/Main_Page') as response:
soup = BeautifulSoup(response, 'html.parser')
for anchor in soup.find_all('a'):
print(anchor.get('href', '/'))
參見
編輯參考資料
編輯- ^ Changelog. [2024年1月18日].
- ^ 2.0 2.1 Beautiful Soup website. [18 April 2012]. (原始內容存檔於2017-02-03).
Beautiful Soup is licensed under the same terms as Python itself
- ^ Richardson, Leonard. Beautiful Soup 4.10.0. beautifulsoup. Google Groups. 7 Sep 2021 [27 September 2022]. (原始內容存檔於2022-09-29).
這是一篇關於電腦程式語言的小作品。您可以透過編輯或修訂擴充其內容。 |