From ef22c1f74473ed7814f342eb06e02c3735bbffd9 Mon Sep 17 00:00:00 2001 From: Asankilp Date: Thu, 11 Jul 2024 13:18:12 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8v0.1.3=EF=BC=8C=E4=BD=BF=E7=94=A8UniMe?= =?UTF-8?q?ssage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nonebot_plugin_acgnshow/acgnshower.py | 7 ++++--- pyproject.toml | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/nonebot_plugin_acgnshow/acgnshower.py b/nonebot_plugin_acgnshow/acgnshower.py index ff274f3..14c7ea9 100644 --- a/nonebot_plugin_acgnshow/acgnshower.py +++ b/nonebot_plugin_acgnshow/acgnshower.py @@ -4,6 +4,7 @@ from typing import Optional from .acgnapis import * from nonebot_plugin_htmlrender import template_to_pic from nonebot_plugin_alconna import on_alconna +from nonebot_plugin_alconna.uniseg import UniMessage from arclet.alconna import Alconna, Args from .config import RES_PATH, TEMPLATE_NAME, config from .util import * @@ -27,12 +28,12 @@ showcmd.shortcut( async def find_show( state: T_State, region: Optional[str] = None, page: Optional[int] = None, date: Optional[str] = None, ): - if not region: await showcmd.finish(__plugin_meta__.usage) + if not region: await UniMessage(__plugin_meta__.usage).send() ; return if not page: page = 1 if not date: date = "" regions_dict = get_regions_dict() regionid = regions_dict.get(region,None) - if regionid == None: await showcmd.finish("不支持此地区") ; return + if regionid == None: await UniMessage("不支持此地区").send() ; return #await showcmd.send("日期:"+ date) shows = get_shows_data(regionid,page=page,pagesize=config.acgnshow_pagesize) # print(shows) @@ -44,4 +45,4 @@ async def find_show( # print(pic) # a = Image.open(io.BytesIO(pic)) # a.save("template2pic.png", format="PNG") - await showcmd.finish(MessageSegment.image(pic)) \ No newline at end of file + await UniMessage.image(pic).send() \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index ac814fd..e5f382c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nonebot-plugin-acgnshow" -version = "0.1.2.1" +version = "0.1.3" description = "Nonebot2插件,从哔哩哔哩会员购获取简易展览数据" readme = "README.md" requires-python = "<4.0,>=3.9" @@ -14,7 +14,7 @@ dependencies = [ "nonebot-adapter-satori>=0.12", "nonebot-adapter-onebot>=2.4.3", "jinja2>=3.1.4", - "requests>=2.32.3", + "requests>=2.32.3" ] license = {text = "MIT"}