前提・実現したいこと
pythonにて気象庁のホームページ(https://www.jma.go.jp/bosai/amedas/#area_type=offices&area_code=130000&amdno=44132&format=table1h)
から気温と気圧のデータを取得したい
発生している問題・エラーメッセージ
bodyタグの中身が表示されない?
pythonを勉強し始めてまだ日が浅くhtmlの事もわかりません。
該当のソースコード
python
import requests
from bs4 import BeautifulSoup
url = "https://www.jma.go.jp/bosai/amedas/#area_type=offices&area_code=340000&amdno=67401&format=table1h"
html = requests.get(url)
tokyo = BeautifulSoup(html.content, "html.parser")
tokyo_weather = tokyo.find(class_ = "amd-table-seriestable")
試したこと
print(tokyo_weather)を行うとNoneとなる。
補足情報(FW/ツールのバージョンなど)
python 3.8.5