diff --git a/home/services/weather.py b/home/services/weather.py index 1d2a797..7008906 100644 --- a/home/services/weather.py +++ b/home/services/weather.py @@ -38,6 +38,7 @@ def simplify_response(weather): Simplifica infinitamente lo que muestra la api :3 """ return { + 'name': weather['name'], 'temp': weather['main']['temp'], 'icon': weather['weather'][0]['url'] }