Pythonでスクレイピングできない(一部しかできない)ページがある。
コードは下記の通り。
(progateのclass指定のあるh3タグの取得を実行している)
python
1import requests 2from bs4 import BeautifulSoup 3 4URL = "https://prog-8.com/" 5 6res = requests.get(URL) 7soup = BeautifulSoup(res.text, 'lxml') 8 9 10h = soup.find_all("h3", class_ = "landing-heading landing-lesson-intro__small-section-title right-spacer") 11print(h)
結果はリストで[]となる。(None)
ピンポイントにh3のclassを指定しているのに取得できない。
取得できない理由と取得する方法を教えてほしい。
回答3件
あなたの回答
tips
プレビュー