nonebot2/none_demo/plugins/weather/__init__.py

23 lines
698 B
Python
Raw Normal View History

2018-06-30 01:25:25 +00:00
from none.command import CommandSession, CommandGroup, permissions as perm
2018-06-26 00:49:08 +00:00
from . import expressions as expr
2018-06-25 13:14:27 +00:00
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-27 14:05:12 +00:00
async def weather(session: CommandSession):
2018-06-25 13:14:27 +00:00
city = session.require_arg('city', prompt_expr=expr.WHICH_CITY)
await session.send_expr(expr.REPORT, city=city)
@weather.args_parser
2018-06-27 14:05:12 +00:00
async def _(session: CommandSession):
2018-06-25 13:14:27 +00:00
if session.current_key:
2018-06-26 00:49:08 +00:00
session.args[session.current_key] = session.current_arg_text.strip()
2018-06-25 13:14:27 +00:00
2018-06-25 14:49:15 +00:00
@w.command('suggestion', aliases=('生活指数', '生活建议', '生活提示'))
2018-06-27 14:05:12 +00:00
async def suggestion(session: CommandSession):
2018-06-25 13:14:27 +00:00
await session.send('suggestion')