nonebot2/none/plugins/weather.py

23 lines
666 B
Python
Raw Normal View History

2018-06-25 13:14:27 +00:00
import none
2018-06-25 14:49:15 +00:00
from none.command import Session, CommandGroup
2018-06-25 13:14:27 +00:00
from none.expressions import weather as expr
2018-06-25 14:49:15 +00:00
w = CommandGroup('weather')
2018-06-25 13:14:27 +00:00
2018-06-25 14:49:15 +00:00
@w.command('weather', aliases=('天气', '天气预报'))
2018-06-25 13:14:27 +00:00
async def weather(session: Session):
city = session.require_arg('city', prompt_expr=expr.WHICH_CITY)
await session.send_expr(expr.REPORT, city=city)
@weather.args_parser
async def _(session: Session):
if session.current_key:
session.args[session.current_key] = session.current_arg.strip()
2018-06-25 14:49:15 +00:00
@w.command('suggestion', aliases=('生活指数', '生活建议', '生活提示'))
2018-06-25 13:14:27 +00:00
async def suggestion(session: Session):
await session.send('suggestion')