現在、pythonを勉強し始めたばかりのものです。
yahooニュースから ITの最新トピックスを取得しようとしておりますが、
エラーが出てしまします。
うまくいくと見出しだけ取得できるそうなのですが、
解決策を教えて頂きたいです。
宜しくお願い致します。
###下記がエラーとして出てきます。
Traceback (most recent call last): File "C:/Users/hannchou6/AppData/Local/Programs/Python/Python36-32/chap2-12.py", line 9, in <module> for element in topic.find_all("a"): AttributeError: 'NoneType' object has no attribute 'find_all'
###下記が対象のコードです。
import requests from bs4 import BeautifulSoup load_url = "https://news.yahoo.co.jp/categories/it" html = requests.get(load_url) soup = BeautifulSoup(html.content, "html.parser") topic = soup.find(class_="topicsList_main") for element in topic.find_all("a"): print(element.text)
回答1件
あなたの回答
tips
プレビュー