blob: fa4554b5628951298211c09ae78cef56929adaf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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('请求未响应或出错,请重试')
|