2016-03-30 18:31:23 +00:00
|
|
|
#--require-config openweathermap-api-key
|
|
|
|
|
2018-10-03 12:22:37 +00:00
|
|
|
from src import ModuleManager, utils
|
2016-03-29 11:56:58 +00:00
|
|
|
|
|
|
|
URL_WEATHER = "http://api.openweathermap.org/data/2.5/weather"
|
|
|
|
|
2018-09-27 10:46:10 +00:00
|
|
|
class Module(ModuleManager.BaseModule):
|
2018-10-03 12:22:37 +00:00
|
|
|
@utils.hook("received.command.weather", min_args=1, usage="<location>")
|
2016-03-29 11:56:58 +00:00
|
|
|
def weather(self, event):
|
2018-09-26 17:27:17 +00:00
|
|
|
"""
|
2018-09-30 16:29:09 +00:00
|
|
|
:help: Get current weather data for a provided location
|
|
|
|
:usage: <location>
|
2018-09-26 17:27:17 +00:00
|
|
|
"""
|
2016-03-29 11:56:58 +00:00
|
|
|
api_key = self.bot.config["openweathermap-api-key"]
|
2018-10-03 12:22:37 +00:00
|
|
|
page = utils.http.get_url(URL_WEATHER, get_params={
|
2016-03-29 11:56:58 +00:00
|
|
|
"q": event["args"], "units": "metric",
|
|
|
|
"APPID": api_key},
|
|
|
|
json=True)
|
|
|
|
if page:
|
|
|
|
if "weather" in page:
|
|
|
|
location = "%s, %s" % (page["name"], page["sys"][
|
|
|
|
"country"])
|
|
|
|
celsius = "%dC" % page["main"]["temp"]
|
|
|
|
fahrenheit = "%dF" % ((page["main"]["temp"]*(9/5))+32)
|
|
|
|
description = page["weather"][0]["description"].title()
|
|
|
|
humidity = "%s%%" % page["main"]["humidity"]
|
|
|
|
wind_speed = "%sKM/h" % page["wind"]["speed"]
|
|
|
|
|
|
|
|
event["stdout"].write(
|
|
|
|
"(%s) %s/%s | %s | Humidity: %s | Wind: %s" % (
|
|
|
|
location, celsius, fahrenheit, description, humidity,
|
|
|
|
wind_speed))
|
|
|
|
else:
|
|
|
|
event["stderr"].write("No weather information for this location")
|
|
|
|
else:
|
2018-10-20 19:51:29 +00:00
|
|
|
raise utils.EventsResultsError()
|