Rename bad variable names

This commit is contained in:
Marius Alwan Meyer 2023-09-29 13:25:31 +02:00
parent 357baf0b57
commit 55fdfc2c8d

View File

@ -13,16 +13,16 @@ base_url = "https://api.openweathermap.org/data/2.5/weather?"
complete_url = base_url + "appid=" + api_key + "&q=" + city_name complete_url = base_url + "appid=" + api_key + "&q=" + city_name
response = requests.get(complete_url) response = requests.get(complete_url)
x = response.json() data = response.json()
if x["cod"] != "404": if data["cod"] != "404":
y = x["main"] info_main = data["main"]
current_temperature = y["temp"] info_weather = data["weather"]
current_pressure = y["pressure"] current_temperature = info_main["temp"]
current_humidity = y["humidity"] current_pressure = info_main["pressure"]
z = x["weather"] current_humidity = info_main["humidity"]
weather_description = z[0]["description"] weather_description = info_weather[0]["description"]
print() print()
print(Columns([ print(Columns([
@ -40,4 +40,4 @@ if x["cod"] != "404":
])) ]))
else: else:
print(" City Not Found ") print(" City Not Found ")