エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
url = f"https://weather.tsukumijima.net/api/forecast?city={city}" response = requests.get(url) re... url = f"https://weather.tsukumijima.net/api/forecast?city={city}" response = requests.get(url) response.raise_for_status() data_json = response.json() date_str = data_json["forecasts"][1]["date"] date = datetime.strptime(date_str,"%Y-%m-%d").strftime("%Y年%m月%d日") title = data_json["title"] weather = data_json["forecasts"][1]["telop"] max_temp = data_json["forecasts"][1]["temperature"]["max"]["cels