<洋服提案をしてくれるプログラミング>
<ソースコード>
- import requests#pop install requestで実行可能に
- def get_temperature(city_name, api_key):#APIキーを使用
- base_url = "https://api.openweathermap.org/data/2.5/weather"
- params = {
- "q": city_name,
- "appid": api_key,
- "units": "metric" # 摂氏温度で取得
- }
- try:
- response = requests.get(base_url, params=params)
- data = response.json()
- temperature = data["main"]["temp"]
- return temperature
- except Exception as e:
- print("エラー:", e)
- return None
- def main():
- city_name = input("地名の名前をローマ字表記で記入") # 取得したい都市の名前を指定
- api_key = "31271437f69c8c0f1e30401c2f81d303" # OpenWeatherMap APIキーを入力
- temperature = get_temperature(city_name, api_key)
- if temperature is not None:
- print(f"{city_name}の現在の気温は {temperature}℃ です。")
- #OpenWeatherMapから情報を取得
- feeling=input("この気温についてどのように感じますか?(暑い/寒い/ちょうどいい)")
- if feeling=="暑い" and temperature>30:
- print("ノースリーブ")
- elif feeling=="寒い" and temperature>30:
- print("七分丈のシャツ/ノースリーブ+薄手のシャツ")
- elif feeling=="寒い" and 25<temperature<31:
- print("長袖または七分丈のシャツ/半袖+薄手のシャツ")
- elif feeling=="暑い" and 25<temperature<31:
- print("ノースリーブ")
- elif feeling=="寒い" and 20<temperature<26:
- print("カーディガン/長袖+薄手のジャケット/スウェット")
- elif feeling=="暑い" and 20<temperature<26:
- print("半袖シャツ/七分丈のシャツ/ノースリーブ+薄手のシャツ")
- elif feeling=="寒い" and 15<temperature<21:
- print("セーター")
- elif feeling=="暑い" and 15<temperature<21:
- print("長袖または七分丈のシャツ/半袖+薄手のシャツ")
- elif feeling=="寒い" and 11<temperature<16:
- print("厚手のニット/トレンチコート")
- elif feeling=="暑い" and 11<temperature<16:
- print("カーディガン/長袖+薄手のジャケット/スウェット")
- elif feeling=="寒い" and 7<temperature<12:
- print("厚手のセーター/冬物のコート")
- elif feeling=="暑い" and 7<temperature<12:
- print("薄手のニット/トレンチコート/ダウンベスト")
- elif feeling=="寒い" and 6<temperature<8:
- print("厚手のセーター/冬物コート/ブーツやタイツ")
- elif feeling=="暑い" and 6<temperature<8:
- print("厚手のニット/トレンチコート")
- elif feeling=="寒い" and temperature<5:
- print("ダウンコート/ブーツ、マフラーや手袋/カイロ")
- elif feeling=="暑い" and temperature<5:
- print("厚手のセーター/冬物コート/ブーツやタイツ")
- else:
- print("今のままでok!")#取得した温度とその温度をどう感じるかによって提案してくれる洋服やアイテムの種類を変えている
-
- else:
- print("気温の取得に失敗しました。")
- if __name__ == "__main__":
- main()
<説明>
自分が知りたい県や市を入力すると、その場所の現在の気温を表示します。
その気温について、どのように感じているかを「暑い」「寒い」「ちょうどいい」の中から選択するとどのような洋服やアイテムを身につけるといいかを提案します。
提案する洋服やアイテムは株式会社デサントの「気温に合わせた服装選びのポイントは?おすすめアイテムやコーディネート例を紹介」を参考にしました。
「寒い」と記入した場合は表示温度より一つ下の項目のアイテムを、「暑い」と記入した場合は表示温度より一つ上の項目のアイテムを提案するようにしました。
できれば、表示アイテムを使ったコーデなどをネットやSNSから引用し表示させるところまでプログラミングできればよかったなと思いました。
<参考サイト>
・
Pythonに日々の服装(ジャージ)を選択させる(@Kent_recuca(Kento Sato))
・チャットGTP(質問内容:外部サイトから気温の情報を取得する方法)