From 6df041754c6ea5cd7faaa553975a38aa68cf3ab8 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Wed, 31 Oct 2018 16:26:02 +0100 Subject: [PATCH] [module/weather] Use json function from requests response Instead of using the json library --- bumblebee/modules/weather.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bumblebee/modules/weather.py b/bumblebee/modules/weather.py index 8233db0..00c5873 100644 --- a/bumblebee/modules/weather.py +++ b/bumblebee/modules/weather.py @@ -16,7 +16,7 @@ import bumblebee.input import bumblebee.output import bumblebee.engine import re -import json + try: import requests from requests.exceptions import RequestException @@ -84,13 +84,13 @@ class Module(bumblebee.engine.Module): weather_url = "{}&units={}".format(weather_url, self._unit) if self._location == "auto": location_url = "http://ipinfo.io/json" - location = json.loads(requests.get(location_url).text) + location = requests.get(location_url).json() coord = location["loc"].split(",") self._city = location["city"] weather_url = "{url}&lat={lat}&lon={lon}".format(url=weather_url, lat=coord[0], lon=coord[1]) else: weather_url = "{url}&q={city}".format(url=weather_url, city=self._location) - weather = json.loads(requests.get(weather_url).text) + weather = requests.get(weather_url).json() self._temperature = int(weather['main']['temp']) self._weather = weather['weather'][0]['main'].lower() self._valid = True