Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/meme/moegirl.py

16 lines
506 B
Python
Raw Normal View History

2022-01-03 09:13:42 +00:00
from core.exceptions import AbuseWarning
from modules.wiki import query_pages
from modules.wiki.wikilib_v2 import QueryInfo
2022-01-03 09:13:42 +00:00
async def moegirl(term: str):
result = await query_pages(QueryInfo('https://zh.moegirl.org.cn/api.php'), term)
msg = ''
if result['msg_list']:
for msg_item in result['msg_list']:
msg += msg_item.text
if result['wait_msg_list']:
for msg_item in result['wait_msg_list']:
msg += msg_item.text
return '[萌娘百科]' + msg