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/jiki.py
2022-01-08 19:21:51 +08:00

21 lines
744 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import ujson as json
from core.utils.bot import post_url
async def jiki(term: str):
'''查询小鸡百科。
:param term: 需要查询的term。
:returns: 查询结果。'''
try:
url = 'https://api.jikipedia.com/go/search_entities' + term
text = await post_url(url, data={'page': 1, 'phrase': term, 'size': 1})
data = json.loads(text)
count = data['total']
result = data['data'][0]['definitions']
title = result['term']['title']
content = result['plaintext']
link = 'https://jikipedia.com/definition/' + result['id']
return f'[小鸡百科]{count}个结果):{title}\n{content}\n{link}'
except:
return '[小鸡百科] 查询出错。'