mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-acgnshow.git
synced 2024-11-11 01:27:39 +08:00
🐛修复依赖
This commit is contained in:
parent
7809ef0c50
commit
fdf101f777
2
.gitignore
vendored
2
.gitignore
vendored
@ -160,3 +160,5 @@ cython_debug/
|
||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||
#.idea/
|
||||
bot.py
|
||||
pdm.lock
|
||||
|
@ -1,6 +1,5 @@
|
||||
import json
|
||||
import requests
|
||||
from jinja2 import Template
|
||||
CITY_API_ROOT="https://show.bilibili.com/api/ticket/city/list?channel=3"
|
||||
SHOWS_API_ROOT="https://show.bilibili.com/api/ticket/project/listV2"
|
||||
HEADERS = {
|
||||
@ -93,6 +92,3 @@ def process_shows_data_to_template(shows_data: dict):
|
||||
})
|
||||
showlist.append(dicts)
|
||||
return showlist
|
||||
template = Template(show_template)
|
||||
rendered = template.render(exhibitions=showlist)
|
||||
return rendered
|
@ -2,7 +2,7 @@ from nonebot.adapters.onebot.v11 import MessageSegment
|
||||
from nonebot.typing import T_State
|
||||
from typing import Optional
|
||||
from .acgnapis import *
|
||||
from nonebot_plugin_htmlrender import text_to_pic, template_to_pic
|
||||
from nonebot_plugin_htmlrender import template_to_pic
|
||||
from nonebot_plugin_alconna import on_alconna
|
||||
from arclet.alconna import Alconna, Args
|
||||
from .config import RES_PATH, TEMPLATE_NAME, config
|
||||
|
@ -1,3 +0,0 @@
|
||||
from nonebot.adapters.onebot import v11, v12
|
||||
from nonebot.adapters import satori
|
||||
T_MessageEvent = v11.MessageEvent | v12.MessageEvent | satori.MessageEvent
|
@ -3,7 +3,7 @@ name = "nonebot-plugin-acgnshow"
|
||||
version = "0.1.1"
|
||||
description = "Nonebot2插件,从哔哩哔哩会员购获取简易展览数据"
|
||||
readme = "README.md"
|
||||
requires-python = "<4.0,>=3.8"
|
||||
requires-python = "<4.0,>=3.9"
|
||||
authors = [
|
||||
{name = "Asankilp", email = "asankilp@outlook.com"},
|
||||
]
|
||||
@ -11,6 +11,7 @@ dependencies = [
|
||||
"nonebot2>=2.2.0",
|
||||
"nonebot-plugin-alconna>=0.48.0",
|
||||
"nonebot-plugin-htmlrender>=0.3.2",
|
||||
"nonebot-adapter-satori>=0.12",
|
||||
"jinja2>=3.1.4",
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user