python-easy/openweather.py

44 lines
1.2 KiB
Python
Raw Normal View History

2023-09-29 11:38:03 +02:00
#!/usr/bin/env python3
import requests
from rich import print
from rich.panel import Panel
from rich.prompt import Prompt
from rich.columns import Columns
api_key = Prompt.ask("Enter your Api Key", password=True)
2023-09-29 11:38:03 +02:00
city_name = Prompt.ask("Enter your City", default="Göttingen")
base_url = "https://api.openweathermap.org/data/2.5/weather?"
complete_url = base_url + "appid=" + api_key + "&q=" + city_name
response = requests.get(complete_url)
2023-09-29 13:25:31 +02:00
data = response.json()
2023-09-29 11:38:03 +02:00
2023-09-29 13:25:31 +02:00
if data["cod"] != "404":
2023-09-29 11:38:03 +02:00
2023-09-29 13:25:31 +02:00
info_main = data["main"]
info_weather = data["weather"]
current_temperature = info_main["temp"]
current_pressure = info_main["pressure"]
current_humidity = info_main["humidity"]
weather_description = info_weather[0]["description"]
2023-09-29 11:38:03 +02:00
2023-09-29 13:05:54 +02:00
print()
2023-09-29 11:38:03 +02:00
print(Columns([
2023-09-29 13:05:54 +02:00
Panel(f"[blue]{round(current_temperature - 273.15, 2)}°C",
title="[bold]Temperature[/bold]"),
Panel(f"[blue]{current_pressure}hPa",
title="[bold]Atmospheric Pressure[/bold]"),
Panel(f"[blue]{current_humidity}%",
title="[bold]Humidity[/bold]"),
2023-09-29 13:05:54 +02:00
Panel(f"[blue]{weather_description}",
title="[bold]Description[/bold]"),
2023-09-29 11:38:03 +02:00
]))
else:
2023-09-29 13:25:31 +02:00
print(" City Not Found ")