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/mcmod/mcmod.py
2023-03-23 23:25:46 +08:00

33 lines
1 KiB
Python

from urllib.parse import quote
from bs4 import BeautifulSoup
from config import Config
from core.builtins import Url
from core.logger import Logger
from core.utils.http import get_url
api = 'https://search.mcmod.cn/s?key='
api_details = 'https://search.mcmod.cn/s?filter=3&key='
async def mcmod(msg, keyword: str, detail: bool = False):
endpoint = api_details if detail else api
search_url = endpoint + quote(keyword)
webrender = Config('web_render')
if not webrender:
return
search_url = webrender + 'source?url=' + quote(search_url)
html = await get_url(search_url, 200)
Logger.debug(html)
bs = BeautifulSoup(html, 'html.parser')
results = bs.find_all('div', class_='result-item')
if results:
res = results[0]
a = res.find('div', class_='head').find('a', recursive=False)
name = a.text
url = a['href']
desc = res.find('div', class_='body').text
return f'{name}\n{str(Url(url))}\n{desc}'
else:
return msg.locale.t('mcmod.message.not_found')