pygbot/weather.py

10 lines
318 B
Python
Raw Permalink Normal View History

2021-11-28 09:04:45 +00:00
import requests
def getweather(bot, channel, message):
2021-12-18 15:35:11 +00:00
try:
location = message.split()[1:]
page = requests.get(f"http://wttr.in/{'+'.join(location)}?format=%l+|+%t+|+%C+|+Humidity:+%h+|+Wind:+%w")
bot.send(channel, page.text)
except:
bot.send(channel, "Failed to get weather")