#インストール方法 1①Enter Python ファイル フォルダーの実行手順 (pip 命令がサポートされている場合): コードは次のとおりです:Python に Bs4 をインストールする 2 つの方法に関するこの記事は、以下を参照してください。
pip3 install Beautifulsoup4
python setup.py install
#基本的な使用法:
コードは次のとおりです:
import bs4 from bs4 import BeautifulSoup 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 href="http://example.com/elsie" rel="external nofollow" class="sister" id="link1">Elsie</a>, <a href="http://example.com/lacie" rel="external nofollow" class="sister" id="link2">Lacie</a> and <a href="http://example.com/tillie" rel="external nofollow" class="sister" id="link3">Tillie</a>; and they lived at the bottom of a well.</p> <p class="story">...</p> """
Python のインストール Bs4 と使用法
BeautifulSoup の作成オブジェクト
コードは次のとおりです。
soup = BeautifulSoup(html_doc,“html.parser”)
Python Bs4 のインストールと使用方法
整形されたドキュメントの出力
コードは次のとおりです:
soup.prettify()
Python Bs4 のインストールと使用方法それを使用してください
タイトルを取得します
コードは次のとおりです:
soup.title.text
Python での Bs4 のインストールとその使用方法
すべてのタグ属性を取得
soup.a.attrs
Python のインストール Bs4 と使用方法
特定のタグ属性が含まれているかどうかを判断します
コードは次のとおりです:
soup.a.has_attr(‘class')
list(soup.p.children)
list(soup.p.children)[0].text
soup.find_all(‘a') for a in soup.find_all(‘a'): print(a.attrs[‘href'])
#コードは次のとおりです:
soup.find(id=‘link3')
Python インストール Bs4 とその使用方法
すべてのテキスト コンテンツを検索
コードは次のとおりです:
soup.get_text()
使用した簡単なサンプルの内容を最初に紹介します
推奨学習:
php ビデオ チュートリアル以上がPython のインストール方法は何通りありますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。