スクレイピングをして、yahooのitニュースからスクレイピングをして最新トピックス一覧だけを表示させたいのですが、「もっと見る」まで表示されてしまいます。どうしたら最新トピックスだけ抜き出すことができるのでしょうか。ご回答よろしくお願いします。
import requests from bs4 import BeautifulSoup url = "https://news.yahoo.co.jp/categories/it" html = requests.get(url) soup = BeautifulSoup(html.content,"html.parser") topic = soup.find(class_ = "sc-fFTYTi KSKOO") for element in topic.find_all("a"): print(element.text)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/10 14:25