From dc793e5d8d2c2ea2d48a51f6b04c1518dd44c200 Mon Sep 17 00:00:00 2001 From: Kyomotoi <1172294279@qq.com> Date: Sun, 31 May 2020 13:01:26 +0800 Subject: =?UTF-8?q?=E5=88=A0=E9=99=A4=E9=83=A8=E5=88=86=E5=A4=B1=E8=B4=A5?= =?UTF-8?q?=E4=BD=9C=E5=93=81=EF=BC=8C=E6=96=B0=E5=A2=9E=E7=96=AB=E6=83=85?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AyaBot/plugins/bilibili.pytest | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 AyaBot/plugins/bilibili.pytest (limited to 'AyaBot/plugins/bilibili.pytest') diff --git a/AyaBot/plugins/bilibili.pytest b/AyaBot/plugins/bilibili.pytest deleted file mode 100644 index fa4554b..0000000 --- a/AyaBot/plugins/bilibili.pytest +++ /dev/null @@ -1,33 +0,0 @@ -import requests -import nonebot -import re -from nonebot import on_command, CommandSession, CQHttpError - - -@on_command('fan', aliases=['搜番', '查番', '番剧搜索', '搜索番剧'], only_to_me=False) -async def seach_fan(session: CommandSession): - year = session.get('year', prompt='你想查找哪一年的番呢?(示范:2020)') - month = session.get('month', prompt='你想查找哪个月的番呢(示范:4)?') - await session.send('查询的情况如下:') - await session.send('日期:' + year + month) - # await session.send('标题:' + title) - # await session.send('链接:' + link) - - -@seach_fan.args_parser -async def _(session: CommandSession): - # if session.is_first_run: - # return - if session.current_key == 'year': - if not re.fullmatch(r'\d{4}', session.current_arg_text): - session.pause('日期格式有误,请重新输入(示范:2020)') - - if session.current_key == 'month': - if not re.fullmatch(r'\d{2}', session.current_arg_text): - session.pause('日期格式有误,请重新输入(示范:4)') - - - # try: - # except CQHttpError: - # await session.send('请求未响应或出错,请重试') - -- cgit v1.2.3