9 lines
206 B
Python
9 lines
206 B
Python
"""Provide weather information over Discord."""
|
|
from bot import hitomi
|
|
from weather import lib
|
|
|
|
|
|
@hitomi.command()
|
|
async def weather(query: str):
|
|
await hitomi.say(lib.get_conditions_for_query([query]))
|