Python | BeautifulSoup のインストール方法と基本的な使い方

BeautifulSoup

BeautifulSoupは、Pythonの「スクレイピング」用ライブラリです。

BeautifulSoupのインストール

pip install beautifulsoup4

BeautifulSoupの使い方

↓ヤフーニュース(https://news.yahoo.co.jp/)から「h1」タグを取得するサンプル

#requests読み込み
import requests
#BeautifulSoup読み込み
from bs4 import BeautifulSoup

#URL指定
url = "https://news.yahoo.co.jp/"
response = requests.get(url)
soup = BeautifulSoup(response.content, "html.parser")

print(soup.select("h1"))