From b33aba098aae9feafd77b56746b4ff5946c843cf Mon Sep 17 00:00:00 2001 From: Kyomotoi <1172294279@qq.com> Date: Tue, 28 Apr 2020 00:30:40 +0800 Subject: Initial commit --- AyaBot/plugins/weather.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 AyaBot/plugins/weather.py (limited to 'AyaBot/plugins/weather.py') diff --git a/AyaBot/plugins/weather.py b/AyaBot/plugins/weather.py new file mode 100644 index 0000000..f02198d --- /dev/null +++ b/AyaBot/plugins/weather.py @@ -0,0 +1,22 @@ +import re +from nonebot import on_command, CommandSession + + +@on_command('weather', aliases=['天气', '查天气', '天气查询']) +async def weather(session: CommandSession): + city = session.get('city', prompt='你想查哪个城市呢?') + date = session.get('date', prompt='你想查哪一天呢?(格式:20200427)') + await session.send('你查询的情况如下' + city) + await session.send('你想查询的日期' + date) + + +@weather.args_parser +async def _(session: CommandSession): + if session.is_first_run: + return + + if session.current_key == 'date': + if not re.fullmatch(r'\d{8}', session.current_arg_text): + session.pause('日期格式有误,请重新输入') + session.args[session.current_key] = session.current_arg_text + -- cgit v1.2.3