nonebot-plugin-l4d2-server 0.3.4a2__py3-none-any.whl → 0.3.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- README.md +23 -3
- nonebot_plugin_l4d2_server/__init__.py +75 -20
- nonebot_plugin_l4d2_server/command.py +5 -4
- nonebot_plugin_l4d2_server/config.py +26 -11
- nonebot_plugin_l4d2_server/data/L4D2/image/template/anne.html +7 -4
- nonebot_plugin_l4d2_server/data/L4D2/image/template/back.png +0 -0
- nonebot_plugin_l4d2_server/data/L4D2/image/template/help - /321/205/320/231/320/277/321/206/320/254/320/274.html" +232 -0
- nonebot_plugin_l4d2_server/data/L4D2/image/template/help.html +1 -1
- nonebot_plugin_l4d2_server/data/L4D2/image/template/help_dack.html +231 -0
- nonebot_plugin_l4d2_server/data/L4D2/image/template/ip.html +1 -1
- nonebot_plugin_l4d2_server/data/L4D2/l4d2.json +27 -139
- nonebot_plugin_l4d2_server/l4d2_anne/__init__.py +40 -17
- nonebot_plugin_l4d2_server/l4d2_anne/analysis.py +40 -0
- nonebot_plugin_l4d2_server/l4d2_anne/anne_telecom.py +70 -70
- nonebot_plugin_l4d2_server/l4d2_anne/server.py +2 -1
- nonebot_plugin_l4d2_server/l4d2_anne/startand.py +18 -0
- nonebot_plugin_l4d2_server/l4d2_file/__init__.py +28 -2
- nonebot_plugin_l4d2_server/l4d2_image/__init__.py +8 -11
- nonebot_plugin_l4d2_server/l4d2_queries/__init__.py +4 -0
- nonebot_plugin_l4d2_server/l4d2_queries/maps.py +27 -0
- nonebot_plugin_l4d2_server/l4d2_queries/qqgroup.py +12 -7
- nonebot_plugin_l4d2_server/l4d2_server/web.py +221 -0
- nonebot_plugin_l4d2_server/l4d2_server/webUI.py +353 -0
- nonebot_plugin_l4d2_server/l4d2_server/workshop.py +24 -5
- nonebot_plugin_l4d2_server/seach.py +2 -1
- nonebot_plugin_l4d2_server/utils.py +5 -7
- {nonebot_plugin_l4d2_server-0.3.4a2.dist-info → nonebot_plugin_l4d2_server-0.3.5.dist-info}/METADATA +28 -4
- nonebot_plugin_l4d2_server-0.3.5.dist-info/RECORD +49 -0
- nonebot_plugin_l4d2_server/data/L4D2/image/template/back2.jpg +0 -0
- nonebot_plugin_l4d2_server-0.3.4a2.dist-info/RECORD +0 -43
- {nonebot_plugin_l4d2_server-0.3.4a2.dist-info → nonebot_plugin_l4d2_server-0.3.5.dist-info}/LICENSE +0 -0
- {nonebot_plugin_l4d2_server-0.3.4a2.dist-info → nonebot_plugin_l4d2_server-0.3.5.dist-info}/WHEEL +0 -0
@@ -0,0 +1,353 @@
|
|
1
|
+
from amis import ColumnList, AmisList, ActionType, TableCRUD, TableColumn
|
2
|
+
from amis import Dialog, PageSchema, Switch, InputNumber, InputTag, Action, App
|
3
|
+
from amis import Form, InputText, InputPassword, DisplayModeEnum, Horizontal, Remark, Html, Page, AmisAPI, Wrapper
|
4
|
+
from amis import LevelEnum, Select, InputArray, Alert, Tpl, Flex
|
5
|
+
|
6
|
+
|
7
|
+
from ..config import NICKNAME
|
8
|
+
|
9
|
+
logo = Html(html='''
|
10
|
+
<p align="center">
|
11
|
+
<a href="https://github.com/CMHopeSunshine/nonebot-plugin-learning-chat/">
|
12
|
+
<img src="http://static.cherishmoon.fun/LittlePaimon/readme/logo.png"
|
13
|
+
width="256" height="256" alt="Learning-Chat">
|
14
|
+
</a>
|
15
|
+
</p>
|
16
|
+
<h1 align="center">Nonebot-Plugin-Learning-Chat 控制台</h1>
|
17
|
+
<div align="center">
|
18
|
+
<a href="https://github.com/CMHopeSunshine/nonebot-plugin-learning-chat/" target="_blank">
|
19
|
+
Github仓库</a>
|
20
|
+
</div>
|
21
|
+
<br>
|
22
|
+
<br>
|
23
|
+
''')
|
24
|
+
login_api = AmisAPI(
|
25
|
+
url='/learning_chat/api/login',
|
26
|
+
method='post',
|
27
|
+
adaptor='''
|
28
|
+
if (payload.status == 0) {
|
29
|
+
localStorage.setItem("token", payload.data.token);
|
30
|
+
}
|
31
|
+
return payload;
|
32
|
+
'''
|
33
|
+
)
|
34
|
+
|
35
|
+
login_form = Form(api=login_api, title='', body=[
|
36
|
+
InputText(name='username', label='用户名',
|
37
|
+
labelRemark=Remark(shape='circle', content='后台管理用户名,默认为chat')),
|
38
|
+
InputPassword(name='password', label='密码',
|
39
|
+
labelRemark=Remark(shape='circle', content='后台管理密码,默认为admin')),
|
40
|
+
], mode=DisplayModeEnum.horizontal, horizontal=Horizontal(left=3, right=9, offset=5), redirect='/learning_chat/admin')
|
41
|
+
body = Wrapper(className='w-2/5 mx-auto my-0 m:w-full', body=login_form)
|
42
|
+
login_page = Page(title='', body=[logo, body])
|
43
|
+
|
44
|
+
global_config_form = Form(
|
45
|
+
title='全局配置',
|
46
|
+
name='global_config',
|
47
|
+
initApi='/learning_chat/api/chat_global_config',
|
48
|
+
api='post:/learning_chat/api/chat_global_config',
|
49
|
+
body=[
|
50
|
+
Switch(label='群聊学习总开关', name='total_enable', value='${total_enable}', onText='开启', offText='关闭',
|
51
|
+
labelRemark=Remark(shape='circle',
|
52
|
+
content='关闭后,全局都将不会再学习和回复(但是仍会对收到的消息进行记录)。')),
|
53
|
+
Switch(label='后台管理总开关', name='enable_web', value='${enable_web}', onText='开启', offText='关闭',
|
54
|
+
labelRemark=Remark(shape='circle',
|
55
|
+
content='是否开启本后台管理,若关闭,则无法再访问本页面。')),
|
56
|
+
InputText(label='后台管理用户名', name='web_username', value='${web_username}',
|
57
|
+
labelRemark=Remark(shape='circle',
|
58
|
+
content='登录本后台管理所需要的用户名。')),
|
59
|
+
InputPassword(label='后台管理密码', name='web_password', value='${web_password}',
|
60
|
+
labelRemark=Remark(shape='circle',
|
61
|
+
content='登录本后台管理所需要的密码。')),
|
62
|
+
InputText(label='后台管理token密钥', name='web_secret_key', value='${web_secret_key}',
|
63
|
+
labelRemark=Remark(shape='circle',
|
64
|
+
content='用于本后台管理加密验证token的密钥。')),
|
65
|
+
InputNumber(label='单句关键词数量', name='KEYWORDS_SIZE', value='${KEYWORDS_SIZE}', visibleOn='${total_enable}',
|
66
|
+
min=2,
|
67
|
+
labelRemark=Remark(shape='circle',
|
68
|
+
content='单句语句标签数量,影响对一句话的主题词提取效果,建议保持默认为3。')),
|
69
|
+
InputNumber(label='跨群回复阈值', name='cross_group_threshold', value='${cross_group_threshold}',
|
70
|
+
visibleOn='${total_enable}', min=1,
|
71
|
+
labelRemark=Remark(shape='circle',
|
72
|
+
content='当学习到的一种回复在N个群都有,那么这个回复就会变为全局回复。')),
|
73
|
+
InputNumber(label='最高学习次数', name='learn_max_count', value='${learn_max_count}',
|
74
|
+
visibleOn='${total_enable}', min=2, labelRemark=Remark(shape='circle',
|
75
|
+
content='学习的回复最高能累计到的次数,值越高,这个回复就会学习得越深,越容易进行回复,如果不想每次都大概率固定回复某一句话,可以将该值设低点。')),
|
76
|
+
InputTag(label='全局屏蔽词', name='ban_words', value='${ban_words}', enableBatchAdd=True,
|
77
|
+
placeholder='添加全局屏蔽词', visibleOn='${total_enable}', joinValues=False, extractValue=True,
|
78
|
+
labelRemark=Remark(shape='circle',
|
79
|
+
content='全局屏蔽词,含有这些词的消息不会学习和回复,默认已屏蔽at、分享、语音、和视频等消息。(回车进行添加)')),
|
80
|
+
InputTag(label='全局屏蔽用户', name='ban_users', value='${ban_users}',
|
81
|
+
enableBatchAdd=True,
|
82
|
+
placeholder='添加全局屏蔽用户', visibleOn='${total_enable}', joinValues=False, extractValue=True,
|
83
|
+
labelRemark=Remark(shape='circle',
|
84
|
+
content='全局屏蔽用户,和这些用户有关的消息不会学习和回复。(回车进行添加)')),
|
85
|
+
InputTag(label='自定义词典', name='dictionary', value='${dictionary}',
|
86
|
+
enableBatchAdd=True,
|
87
|
+
placeholder='添加自定义词语', visibleOn='${total_enable}', joinValues=False, extractValue=True,
|
88
|
+
labelRemark=Remark(shape='circle',
|
89
|
+
content='添加自定义词语,让分词能够识别未收录的词汇,提高学习的准确性。你可以添加特殊名词,这样学习时就会将该词看作一个整体,目前词典中已默认添加部分原神相关词汇。(回车进行添加)')),
|
90
|
+
],
|
91
|
+
actions=[Action(label='保存', level=LevelEnum.success, type='submit'),
|
92
|
+
Action(label='重置', level=LevelEnum.warning, type='reset')]
|
93
|
+
)
|
94
|
+
group_select = Select(label='分群配置', name='group_id', source='${group_list}',
|
95
|
+
placeholder='选择群')
|
96
|
+
group_config_form = Form(
|
97
|
+
title='分群配置',
|
98
|
+
visibleOn='group_id != null',
|
99
|
+
initApi='/learning_chat/api/chat_group_config?group_id=${group_id}',
|
100
|
+
api='post:/learning_chat/api/chat_group_config?group_id=${group_id}',
|
101
|
+
body=[
|
102
|
+
Switch(label='群聊学习开关', name='enable', value='${enable}', onText='开启', offText='关闭',
|
103
|
+
labelRemark=Remark(shape='circle', content='针对该群的群聊学习开关,关闭后,仅该群不会学习和回复。')),
|
104
|
+
InputNumber(label='回复阈值', name='answer_threshold', value='${answer_threshold}', visibleOn='${enable}',
|
105
|
+
min=2,
|
106
|
+
labelRemark=Remark(shape='circle', content='可以理解为学习成功所需要的次数,值越低学得越快。')),
|
107
|
+
InputArray(label='回复阈值权重', name='answer_threshold_weights', value='${answer_threshold_weights}',
|
108
|
+
items=InputNumber(min=1, max=100, value=25, suffix='%'), inline=True, visibleOn='${enable}',
|
109
|
+
labelRemark=Remark(shape='circle',
|
110
|
+
content='影响回复阈值的计算方式,以默认的回复阈值4、权重[10, 30, 60]为例,在计算阈值时,60%概率为4,30%概率为3,10%概率为2。')),
|
111
|
+
InputNumber(label='复读阈值', name='repeat_threshold', value='${repeat_threshold}', visibleOn='${enable}',
|
112
|
+
min=2,
|
113
|
+
labelRemark=Remark(shape='circle',
|
114
|
+
content=f'跟随复读所需要的阈值,有N个人复读后,{NICKNAME}就会跟着复读。')),
|
115
|
+
InputNumber(label='打断复读概率', name='break_probability', value='${break_probability}',
|
116
|
+
min=0, max=100, suffix='%', visibleOn='${AND(enable, speak_enable)}',
|
117
|
+
labelRemark=Remark(shape='circle', content='达到复读阈值时,打断复读而不是跟随复读的概率。')),
|
118
|
+
InputTag(label='屏蔽词', name='ban_words', value='${ban_words}', enableBatchAdd=True,
|
119
|
+
placeholder='添加屏蔽词', visibleOn='${enable}', joinValues=False, extractValue=True,
|
120
|
+
labelRemark=Remark(shape='circle', content='含有这些词的消息不会学习和回复。(回车进行添加)')),
|
121
|
+
InputTag(label='屏蔽用户', source='${member_list}', name='ban_users', value='${ban_users}', enableBatchAdd=True,
|
122
|
+
placeholder='添加屏蔽用户', visibleOn='${enable}', joinValues=False, extractValue=True,
|
123
|
+
labelRemark=Remark(shape='circle', content='和该群中这些用户有关的消息不会学习和回复。(回车进行添加)')),
|
124
|
+
Switch(label='主动发言开关', name='speak_enable', value='${speak_enable}', visibleOn='${enable}',
|
125
|
+
labelRemark=Remark(shape='circle',
|
126
|
+
content=f'是否允许{NICKNAME}在该群主动发言,主动发言是指每隔一段时间挑选一个热度较高的群,主动发一些学习过的内容。')),
|
127
|
+
InputNumber(label='主动发言阈值', name='speak_threshold', value='${speak_threshold}',
|
128
|
+
visibleOn='${AND(enable, speak_enable)}', min=0,
|
129
|
+
labelRemark=Remark(shape='circle', content='值越低,主动发言的可能性越高。')),
|
130
|
+
InputNumber(label='主动发言最小间隔', name='speak_min_interval', value='${speak_min_interval}', min=0,
|
131
|
+
visibleOn='${AND(enable, speak_enable)}', suffix='秒',
|
132
|
+
labelRemark=Remark(shape='circle', content='进行主动发言的最小时间间隔。')),
|
133
|
+
InputNumber(label='连续主动发言概率', name='speak_continuously_probability',
|
134
|
+
value='${speak_continuously_probability}', min=0, max=100, suffix='%',
|
135
|
+
visibleOn='${AND(enable, speak_enable)}',
|
136
|
+
labelRemark=Remark(shape='circle', content='触发主动发言时,连续进行发言的概率。')),
|
137
|
+
InputNumber(label='最大连续主动发言句数', name='speak_continuously_max_len',
|
138
|
+
value='${speak_continuously_max_len}', visibleOn='${AND(enable, speak_enable)}', min=1,
|
139
|
+
labelRemark=Remark(shape='circle', content='连续主动发言的最大句数。')),
|
140
|
+
InputNumber(label='主动发言附带戳一戳概率', name='speak_poke_probability', value='${speak_poke_probability}',
|
141
|
+
min=0, max=100, suffix='%', visibleOn='${AND(enable, speak_enable)}',
|
142
|
+
labelRemark=Remark(shape='circle',
|
143
|
+
content='主动发言时附带戳一戳的概率,会在最近5个发言者中随机选一个戳。')),
|
144
|
+
],
|
145
|
+
actions=[Action(label='保存', level=LevelEnum.success, type='submit'),
|
146
|
+
ActionType.Ajax(
|
147
|
+
label='保存至所有群',
|
148
|
+
level=LevelEnum.primary,
|
149
|
+
confirmText='确认将当前配置保存至所有群?',
|
150
|
+
api='post:/learning_chat/api/chat_group_config?group_id=all'
|
151
|
+
),
|
152
|
+
Action(label='重置', level=LevelEnum.warning, type='reset')]
|
153
|
+
)
|
154
|
+
|
155
|
+
blacklist_table = TableCRUD(mode='table',
|
156
|
+
title='',
|
157
|
+
syncLocation=False,
|
158
|
+
api='/learning_chat/api/get_chat_blacklist',
|
159
|
+
interval=15000,
|
160
|
+
headerToolbar=[ActionType.Ajax(label='取消所有禁用',
|
161
|
+
level=LevelEnum.warning,
|
162
|
+
confirmText='确定要取消所有禁用吗?',
|
163
|
+
api='put:/learning_chat/api/delete_all?type=blacklist')],
|
164
|
+
itemActions=[ActionType.Ajax(tooltip='取消禁用',
|
165
|
+
icon='fa fa-check-circle-o text-info',
|
166
|
+
confirmText='取消该被禁用的内容/关键词,但是仍然需要重新学习哦!',
|
167
|
+
api='delete:/learning_chat/api/delete_chat?type=blacklist&id=${id}')
|
168
|
+
],
|
169
|
+
footable=True,
|
170
|
+
columns=[TableColumn(type='tpl', tpl='${keywords|truncate:20}', label='内容/关键词',
|
171
|
+
name='keywords',
|
172
|
+
searchable=True, popOver={'mode': 'dialog', 'title': '全文',
|
173
|
+
'className': 'break-all',
|
174
|
+
'body': {'type': 'tpl',
|
175
|
+
'tpl': '${keywords}'}}),
|
176
|
+
TableColumn(label='已禁用的群', name='bans', searchable=True),
|
177
|
+
])
|
178
|
+
message_table = TableCRUD(mode='table',
|
179
|
+
title='',
|
180
|
+
syncLocation=False,
|
181
|
+
api='/learning_chat/api/get_chat_messages',
|
182
|
+
interval=12000,
|
183
|
+
headerToolbar=[ActionType.Ajax(label='删除所有聊天记录',
|
184
|
+
level=LevelEnum.warning,
|
185
|
+
confirmText='确定要删除所有聊天记录吗?',
|
186
|
+
api='put:/learning_chat/api/delete_all?type=message')],
|
187
|
+
itemActions=[ActionType.Ajax(tooltip='禁用',
|
188
|
+
icon='fa fa-ban text-danger',
|
189
|
+
confirmText='禁用该聊天记录相关的学习内容和回复',
|
190
|
+
api='put:/learning_chat/api/ban_chat?type=message&id=${id}'),
|
191
|
+
ActionType.Ajax(tooltip='删除',
|
192
|
+
icon='fa fa-times text-danger',
|
193
|
+
confirmText='删除该条聊天记录',
|
194
|
+
api='delete:/learning_chat/api/delete_chat?type=message&id=${id}')
|
195
|
+
],
|
196
|
+
footable=True,
|
197
|
+
columns=[TableColumn(label='消息ID', name='message_id'),
|
198
|
+
TableColumn(label='群ID', name='group_id', searchable=True),
|
199
|
+
TableColumn(label='用户ID', name='user_id', searchable=True),
|
200
|
+
TableColumn(type='tpl', tpl='${raw_message|truncate:20}', label='消息',
|
201
|
+
name='message',
|
202
|
+
searchable=True, popOver={'mode': 'dialog', 'title': '消息全文',
|
203
|
+
'className': 'break-all',
|
204
|
+
'body': {'type': 'tpl',
|
205
|
+
'tpl': '${raw_message}'}}),
|
206
|
+
TableColumn(type='tpl', tpl='${time|date:YYYY-MM-DD HH\\:mm\\:ss}', label='时间',
|
207
|
+
name='time', sortable=True)
|
208
|
+
])
|
209
|
+
answer_table = TableCRUD(
|
210
|
+
mode='table',
|
211
|
+
syncLocation=False,
|
212
|
+
footable=True,
|
213
|
+
api='/learning_chat/api/get_chat_answers',
|
214
|
+
interval=12000,
|
215
|
+
headerToolbar=[ActionType.Ajax(label='删除所有已学习的回复',
|
216
|
+
level=LevelEnum.warning,
|
217
|
+
confirmText='确定要删除所有已学习的回复吗?',
|
218
|
+
api='put:/learning_chat/api/delete_all?type=answer')],
|
219
|
+
itemActions=[ActionType.Ajax(tooltip='禁用',
|
220
|
+
icon='fa fa-ban text-danger',
|
221
|
+
confirmText='禁用并删除该已学回复',
|
222
|
+
api='put:/learning_chat/api/ban_chat?type=answer&id=${id}'),
|
223
|
+
ActionType.Ajax(tooltip='删除',
|
224
|
+
icon='fa fa-times text-danger',
|
225
|
+
confirmText='仅删除该已学回复,不会禁用,所以依然能继续学',
|
226
|
+
api='delete:/learning_chat/api/delete_chat?type=answer&id=${id}')],
|
227
|
+
columns=[TableColumn(label='ID', name='id', visible=False),
|
228
|
+
TableColumn(label='群ID', name='group_id', searchable=True),
|
229
|
+
TableColumn(type='tpl', tpl='${keywords|truncate:20}', label='内容/关键词', name='keywords',
|
230
|
+
searchable=True, popOver={'mode': 'dialog', 'title': '内容全文', 'className': 'break-all',
|
231
|
+
'body': {'type': 'tpl', 'tpl': '${keywords}'}}),
|
232
|
+
TableColumn(type='tpl', tpl='${time|date:YYYY-MM-DD HH\\:mm\\:ss}', label='最后学习时间', name='time',
|
233
|
+
sortable=True),
|
234
|
+
TableColumn(label='次数', name='count', sortable=True),
|
235
|
+
ColumnList(label='完整消息', name='messages', breakpoint='*', source='${messages}',
|
236
|
+
listItem=AmisList.Item(body={'name': 'msg'}))
|
237
|
+
])
|
238
|
+
answer_table_on_context = TableCRUD(
|
239
|
+
mode='table',
|
240
|
+
syncLocation=False,
|
241
|
+
footable=True,
|
242
|
+
api='/learning_chat/api/get_chat_answers?context_id=${id}&page=${page}&perPage=${perPage}&orderBy=${orderBy}&orderDir=${orderDir}',
|
243
|
+
interval=12000,
|
244
|
+
headerToolbar=[ActionType.Ajax(label='删除该内容所有回复',
|
245
|
+
level=LevelEnum.warning,
|
246
|
+
confirmText='确定要删除该条内容已学习的回复吗?',
|
247
|
+
api='put:/learning_chat/api/delete_all?type=answer&id=${id}')],
|
248
|
+
itemActions=[ActionType.Ajax(tooltip='禁用',
|
249
|
+
icon='fa fa-ban text-danger',
|
250
|
+
confirmText='禁用并删除该已学回复',
|
251
|
+
api='put:/learning_chat/api/ban_chat?type=answer&id=${id}'),
|
252
|
+
ActionType.Ajax(tooltip='删除',
|
253
|
+
icon='fa fa-times text-danger',
|
254
|
+
confirmText='仅删除该已学回复,但不禁用,依然能继续学',
|
255
|
+
api='delete:/learning_chat/api/delete_chat?type=answer&id=${id}')],
|
256
|
+
columns=[TableColumn(label='ID', name='id', visible=False),
|
257
|
+
TableColumn(label='群ID', name='group_id'),
|
258
|
+
TableColumn(type='tpl', tpl='${keywords|truncate:20}', label='内容/关键词', name='keywords',
|
259
|
+
searchable=True, popOver={'mode': 'dialog', 'title': '内容全文', 'className': 'break-all',
|
260
|
+
'body': {'type': 'tpl', 'tpl': '${keywords}'}}),
|
261
|
+
TableColumn(type='tpl', tpl='${time|date:YYYY-MM-DD HH\\:mm\\:ss}', label='最后学习时间', name='time',
|
262
|
+
sortable=True),
|
263
|
+
TableColumn(label='次数', name='count', sortable=True),
|
264
|
+
ColumnList(label='完整消息', name='messages', breakpoint='*', source='${messages}',
|
265
|
+
listItem=AmisList.Item(body={'name': 'msg'}))
|
266
|
+
])
|
267
|
+
context_table = TableCRUD(mode='table',
|
268
|
+
title='',
|
269
|
+
syncLocation=False,
|
270
|
+
api='/learning_chat/api/get_chat_contexts',
|
271
|
+
interval=12000,
|
272
|
+
headerToolbar=[ActionType.Ajax(label='删除所有学习内容',
|
273
|
+
level=LevelEnum.warning,
|
274
|
+
confirmText='确定要删除所有已学习的内容吗?',
|
275
|
+
api='put:/learning_chat/api/delete_all?type=context')],
|
276
|
+
itemActions=[ActionType.Dialog(tooltip='回复列表',
|
277
|
+
icon='fa fa-book text-info',
|
278
|
+
dialog=Dialog(title='回复列表',
|
279
|
+
size='lg',
|
280
|
+
body=answer_table_on_context)),
|
281
|
+
ActionType.Ajax(tooltip='禁用',
|
282
|
+
icon='fa fa-ban text-danger',
|
283
|
+
confirmText='禁用并删除该学习的内容及其所有回复',
|
284
|
+
api='put:/learning_chat/api/ban_chat?type=context&id=${id}'),
|
285
|
+
ActionType.Ajax(tooltip='删除',
|
286
|
+
icon='fa fa-times text-danger',
|
287
|
+
confirmText='仅删除该学习的内容及其所有回复,但不禁用,依然能继续学',
|
288
|
+
api='delete:/learning_chat/api/delete_chat?type=context&id=${id}')
|
289
|
+
],
|
290
|
+
footable=True,
|
291
|
+
columns=[TableColumn(label='ID', name='id', visible=False),
|
292
|
+
TableColumn(type='tpl', tpl='${keywords|truncate:20}', label='内容/关键词',
|
293
|
+
name='keywords', searchable=True,
|
294
|
+
popOver={'mode': 'dialog', 'title': '内容全文', 'className': 'break-all',
|
295
|
+
'body': {'type': 'tpl', 'tpl': '${keywords}'}}),
|
296
|
+
TableColumn(type='tpl', tpl='${time|date:YYYY-MM-DD HH\\:mm\\:ss}',
|
297
|
+
label='最后学习时间', name='time', sortable=True),
|
298
|
+
TableColumn(label='已学次数', name='count', sortable=True),
|
299
|
+
])
|
300
|
+
|
301
|
+
message_page = PageSchema(url='/messages', icon='fa fa-comments', label='群聊消息',
|
302
|
+
schema=Page(title='群聊消息', body=[
|
303
|
+
Alert(level=LevelEnum.info,
|
304
|
+
className='white-space-pre-wrap',
|
305
|
+
body=(f'此数据库记录了{NICKNAME}收到的聊天记录。\n'
|
306
|
+
'· 点击"禁用"可以将某条聊天记录进行禁用,这样其相关的学习就会列入禁用列表。\n'
|
307
|
+
'· 点击"删除"可以删除某条记录,但不会影响它的学习。\n'
|
308
|
+
f'· 可以通过搜索{NICKNAME}的QQ号,来查看它的回复记录。')),
|
309
|
+
message_table]))
|
310
|
+
context_page = PageSchema(url='/contexts', icon='fa fa-comment', label='学习内容',
|
311
|
+
schema=Page(title='内容',
|
312
|
+
body=[Alert(level=LevelEnum.info,
|
313
|
+
className='white-space-pre-wrap',
|
314
|
+
body=(f'此数据库记录了{NICKNAME}所学习的内容。\n'
|
315
|
+
'· 点击"回复列表"可以查看该条内容已学习到的可能的回复。\n'
|
316
|
+
'· 点击"禁用"可以将该学习进行禁用,以后不会再学。\n'
|
317
|
+
'· 点击"删除"可以删除该学习,让它重新开始学习这句话。')),
|
318
|
+
context_table]))
|
319
|
+
answer_page = PageSchema(url='/answers', icon='fa fa-commenting-o', label='内容回复',
|
320
|
+
schema=Page(title='回复',
|
321
|
+
body=[Alert(level=LevelEnum.info,
|
322
|
+
className='white-space-pre-wrap',
|
323
|
+
body=(
|
324
|
+
f'此数据库记录了{NICKNAME}已学习到的所有回复,但看不到这些回复属于哪些内容,推荐到"学习内容"表进行操作。\n'
|
325
|
+
'· 点击"禁用"可以将该回复进行禁用,以后不会再学。\n'
|
326
|
+
'· 点击"删除"可以删除该回复,让它重新开始学习。')),
|
327
|
+
answer_table]))
|
328
|
+
blacklist_page = PageSchema(url='/blacklist', icon='fa fa-ban', label='禁用列表',
|
329
|
+
schema=Page(title='禁用列表',
|
330
|
+
body=[Alert(level=LevelEnum.info,
|
331
|
+
className='white-space-pre-wrap',
|
332
|
+
body=f'此数据库记录了{NICKNAME}被禁用的内容/关键词。\n'
|
333
|
+
'· 可以取消禁用,使其能够重新继续学习。\n'
|
334
|
+
'· 不能在此添加禁用,只能在群中回复[不可以]或者在<配置>中添加屏蔽词来达到禁用效果。'),
|
335
|
+
blacklist_table]))
|
336
|
+
database_page = PageSchema(label='数据库', icon='fa fa-database',
|
337
|
+
children=[message_page, context_page, answer_page, blacklist_page])
|
338
|
+
config_page = PageSchema(url='/configs', isDefaultPage=True, icon='fa fa-wrench', label='配置',
|
339
|
+
schema=Page(title='配置', initApi='/learning_chat/api/get_group_list',
|
340
|
+
body=[global_config_form, group_select, group_config_form]))
|
341
|
+
chat_page = PageSchema(label='群聊学习', icon='fa fa-wechat (alias)', children=[config_page, database_page])
|
342
|
+
|
343
|
+
github_logo = Tpl(className='w-full',
|
344
|
+
tpl='<div class="flex justify-between"><div></div><div><a href="https://github.com/CMHopeSunshine/nonebot-plugin-learning-chat" target="_blank" title="Copyright"><i class="fa fa-github fa-2x"></i></a></div></div>')
|
345
|
+
header = Flex(className='w-full', justify='flex-end', alignItems='flex-end', items=[github_logo])
|
346
|
+
|
347
|
+
admin_app = App(brandName='Learning-Chat',
|
348
|
+
logo='http://static.cherishmoon.fun/LittlePaimon/readme/logo.png',
|
349
|
+
header=header,
|
350
|
+
pages=[{
|
351
|
+
'children': [config_page, database_page]
|
352
|
+
}],
|
353
|
+
footer='<div class="p-2 text-center bg-blue-100">Copyright © 2021 - 2022 <a href="https://github.com/CMHopeSunshine/nonebot-plugin-learning-chat" target="_blank" class="link-secondary">Learning-Chat</a> X<a target="_blank" href="https://github.com/baidu/amis" class="link-secondary" rel="noopener"> amis v2.2.0</a></div>')
|
@@ -7,6 +7,16 @@ except:
|
|
7
7
|
|
8
8
|
async def workshop_to_dict(msg:str):
|
9
9
|
"""把创意工坊的id,转化为信息字典"""
|
10
|
+
i = await api_get_json(msg)
|
11
|
+
|
12
|
+
# 处理是否是多地图文件
|
13
|
+
if i['file_url'] == i['preview_url']:
|
14
|
+
return await primary_map(i)
|
15
|
+
else:
|
16
|
+
return await only_map(i)
|
17
|
+
|
18
|
+
|
19
|
+
async def api_get_json(msg:str) ->dict:
|
10
20
|
url_serach = 'https://db.steamworkshopdownloader.io/prod/api/details/file'
|
11
21
|
data = f'[{msg}]'
|
12
22
|
headers = {
|
@@ -17,15 +27,24 @@ async def workshop_to_dict(msg:str):
|
|
17
27
|
out = {}
|
18
28
|
data = data[1:-1]
|
19
29
|
data = json.loads(data)
|
20
|
-
|
30
|
+
return data
|
31
|
+
|
32
|
+
|
33
|
+
async def only_map(i:dict):
|
34
|
+
"""单地图下载"""
|
35
|
+
out = {}
|
21
36
|
out['名字'] = i['title']
|
22
37
|
out['游戏'] = i['app_name']
|
23
38
|
out['下载地址'] = i['file_url']
|
24
39
|
out['图片地址'] = i['preview_url']
|
25
40
|
out['细节'] = i['file_description']
|
26
41
|
return out
|
27
|
-
|
28
|
-
|
29
|
-
|
30
42
|
|
31
|
-
|
43
|
+
async def primary_map(i):
|
44
|
+
"""主地图返回多地图参数"""
|
45
|
+
map_list = []
|
46
|
+
map_list.append(i)
|
47
|
+
for one in i['children']:
|
48
|
+
map_list.append(await api_get_json(one['publishedfileid']))
|
49
|
+
return map_list
|
50
|
+
|
@@ -6,7 +6,7 @@ import httpx
|
|
6
6
|
import os
|
7
7
|
from pathlib import Path
|
8
8
|
|
9
|
-
from typing import List,Dict
|
9
|
+
from typing import List,Dict,Union
|
10
10
|
from .txt_to_img import txt_to_img
|
11
11
|
from .config import *
|
12
12
|
from .l4d2_anne import write_player,del_player,anne_messgae
|
@@ -42,12 +42,12 @@ async def get_file(url:str,down_file:Path):
|
|
42
42
|
mes = None
|
43
43
|
return mes
|
44
44
|
|
45
|
-
def get_vpk(vpk_list:list,path):
|
45
|
+
def get_vpk(vpk_list:list,path,file_:str = '.vpk'):
|
46
46
|
'''
|
47
47
|
获取所有vpk文件
|
48
48
|
'''
|
49
49
|
for file in os.listdir(path):
|
50
|
-
if file.endswith(
|
50
|
+
if file.endswith(file_):
|
51
51
|
vpk_list.append(file)
|
52
52
|
return vpk_list
|
53
53
|
|
@@ -190,8 +190,6 @@ async def show_ip(group_id):
|
|
190
190
|
if len(data_list) == 0 :
|
191
191
|
return "本群没有订阅"
|
192
192
|
msg = await qq_ip_queries_pic(data_list)
|
193
|
-
if type(msg) == str:
|
194
|
-
msg = solve(msg)
|
195
193
|
return msg
|
196
194
|
|
197
195
|
async def get_number_url(number):
|
@@ -211,7 +209,7 @@ async def workshop_msg(msg:str):
|
|
211
209
|
pass
|
212
210
|
msg = msg.replace('https://steamcommunity.com/sharedfiles/filedetails/?id=','')
|
213
211
|
if msg.isdigit():
|
214
|
-
data:
|
212
|
+
data:Union[dict,List[dict]] = await workshop_to_dict(msg)
|
215
213
|
return data
|
216
214
|
else:
|
217
215
|
return None
|
@@ -222,7 +220,7 @@ async def save_file(file:bytes,path_name):
|
|
222
220
|
files.write(file)
|
223
221
|
|
224
222
|
async def get_anne_server_ip(ip):
|
225
|
-
"""输出查询ip"""
|
223
|
+
"""输出查询ip和ping"""
|
226
224
|
host,port = split_maohao(ip)
|
227
225
|
data = await queries_server([host,port])
|
228
226
|
lines = data.splitlines()
|
{nonebot_plugin_l4d2_server-0.3.4a2.dist-info → nonebot_plugin_l4d2_server-0.3.5.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: nonebot-plugin-l4d2-server
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.5
|
4
4
|
Summary: L4D2 server related operations plugin for NoneBot
|
5
5
|
Home-page: https://github.com/Umamusume-Agnes-Digital/nonebot_plugin_l4d2_server
|
6
6
|
License: MIT
|
@@ -22,21 +22,25 @@ Classifier: Programming Language :: Python :: 3.10
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.8
|
23
23
|
Classifier: Programming Language :: Python :: 3.9
|
24
24
|
Requires-Dist: aiohttp (>=3.8.3,<4.0.0)
|
25
|
+
Requires-Dist: amis-python (>=1.0.6,<2.0.0)
|
25
26
|
Requires-Dist: asyncio (>=3.4.3,<4.0.0)
|
26
27
|
Requires-Dist: beautifulsoup4 (>=4.8.0,<5.0.0)
|
27
28
|
Requires-Dist: httpx (>=0.23.3,<0.24.0)
|
29
|
+
Requires-Dist: jieba (>=0.42.1,<0.43.0)
|
28
30
|
Requires-Dist: jinja2 (>=3.0.0,<4.0.0)
|
29
31
|
Requires-Dist: nonebot-adapter-onebot (>=2.1.5)
|
30
32
|
Requires-Dist: nonebot2 (>=2.0.0rc3,<3.0.0)
|
31
33
|
Requires-Dist: nonebot_plugin_apscheduler (>=0.2.0,<0.3.0)
|
32
34
|
Requires-Dist: nonebot_plugin_htmlrender (>=0.2.0.1,<0.3.0.0)
|
33
35
|
Requires-Dist: nonebot_plugin_txt2img (>=0.3.0)
|
36
|
+
Requires-Dist: pandas (>=1.5.2)
|
34
37
|
Requires-Dist: patool (>=1.12,<2.0)
|
35
38
|
Requires-Dist: pillow (>=9.3.0,<10.0.0)
|
36
39
|
Requires-Dist: python-a2s (>=1.3.0,<2.0.0)
|
37
40
|
Requires-Dist: pyunpack (>=0.3.0,<0.4.0)
|
38
41
|
Requires-Dist: rarfile (>=4.0,<5.0)
|
39
42
|
Requires-Dist: rcon (>=2.1.0,<3.0.0)
|
43
|
+
Requires-Dist: ruamel.yaml (>=0.17.21,<0.18.0)
|
40
44
|
Requires-Dist: srctools (>=2.3.9,<3.0.0)
|
41
45
|
Project-URL: Repository, https://github.com/Umamusume-Agnes-Digital/nonebot_plugin_l4d2_server
|
42
46
|
Description-Content-Type: text/markdown
|
@@ -259,6 +263,8 @@ _✨Nonebot & Left 4 Dead 2 server操作✨_
|
|
259
263
|
| l4_image | 否 | True | 布尔值,是否显示图片 |
|
260
264
|
| l4_font | 否 | 'simsun.ttc' | str,确保在开启图片的时候,字体存在 |
|
261
265
|
| l4_only | 否 | False | 布尔值,如果不想在下载的时候阻碍其他指令可以开启,但是有不能下载超过200m地图的bug |
|
266
|
+
| l4_style | 否 | '' | str,图片风格,目前可选['balck'] |
|
267
|
+
|
262
268
|
|
263
269
|
</details>
|
264
270
|
|
@@ -335,6 +341,23 @@ anne:<br>
|
|
335
341
|
<details>
|
336
342
|
<summary>展开/收起</summary>
|
337
343
|
|
344
|
+
### 0.3.5--2022.3.6
|
345
|
+
|
346
|
+
- 新增ping查询(在ip里包括)
|
347
|
+
- 新增api查询(未完成)
|
348
|
+
- 修复了电信服查询绑定名字无法查询的错误
|
349
|
+
- 新增了救援率的显示
|
350
|
+
- 新增web端(未完成)
|
351
|
+
|
352
|
+
### 0.3.4--2022.3.1
|
353
|
+
|
354
|
+
- 新增本地插件smx查询
|
355
|
+
- 增加了三个内置群服
|
356
|
+
- 修改了图片的UI,变好看了
|
357
|
+
- 删减了部分图片和字体,使得轻量化
|
358
|
+
- 修复了海量bug
|
359
|
+
- 修复了python3.8中typing错误
|
360
|
+
|
338
361
|
### 0.3.3--2022.2.26
|
339
362
|
|
340
363
|
- 重写协议,使用a2s库,同时解决win端不同报错无法输出
|
@@ -490,16 +513,17 @@ ubuntu20.04 python3.10
|
|
490
513
|
- 2、~[自己写的求生之路查询库](https://github.com/Umamusume-Agnes-Digital/VSQ)~
|
491
514
|
- 3、[可爱小Q的帮助(太好看了tql)](https://github.com/MeetWq/mybot)
|
492
515
|
- 4、感谢petpet交流群各位大佬指点nonebot2事件处理api
|
516
|
+
- 5、ArcPav改的暗♂黑风格菜单
|
493
517
|
|
494
518
|
<h2 id="cx">服务器相关 </h2>
|
495
519
|
|
496
|
-
|
520
|
+
目前插件会内置经腐竹同意的服的查询(未来将使用api)
|
497
521
|
|
498
522
|
| 指令 | 服务器 | op | 数量 |
|
499
523
|
|:-----:|:----:|:----:|:----:|
|
500
|
-
| 云 | anne
|
524
|
+
| 云 | ~anne电信服云服~(暂时不提供) | 东 | 24
|
501
525
|
| 呆呆 | 呆呆的小窝 | 提莫大魔王 | 15
|
502
|
-
| 橘 | 橘希实香的小窝 | 橘希实香 |
|
526
|
+
| 橘 | 橘希实香的小窝 | 橘希实香 | 7
|
503
527
|
|
504
528
|
如果需要上传自己的ip可以Pr、iss或者进qq群
|
505
529
|
|
@@ -0,0 +1,49 @@
|
|
1
|
+
LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
2
|
+
nonebot_plugin_l4d2_server/__init__.py,sha256=bltu79zSdOQrR3bOxqTIIvEcfcARI-4EmvTYNZ2OiTg,17752
|
3
|
+
nonebot_plugin_l4d2_server/command.py,sha256=oyM-j86qLSRUu-8WDRw39SJ33qzW9AqabRDjji_r1SM,5051
|
4
|
+
nonebot_plugin_l4d2_server/config.py,sha256=PrN3VQeEnErz7FOK8lnHeyZzzDmndf09IO-UlQXbfJY,4035
|
5
|
+
nonebot_plugin_l4d2_server/data/L4D2/image/head/head.png,sha256=Z72PEvp7xF1DZcLDeuWlg2_g6JAfHxtisptWn6BYGN8,158357
|
6
|
+
nonebot_plugin_l4d2_server/data/L4D2/image/header/player1.jpg,sha256=2A_llIi9YVhJs9JOMuF36by7Ewc7P7qOgQS8t5jemNw,405369
|
7
|
+
nonebot_plugin_l4d2_server/data/L4D2/image/template/anne.html,sha256=DP2bEr2TAgDfXwNTe1Fz71TcJYPA1z4bqxkI9LXY1Q4,1666
|
8
|
+
nonebot_plugin_l4d2_server/data/L4D2/image/template/back.png,sha256=tFXhpNiFnbTZiEF9Z2O2EjxCxcrhsFJH4po8Cb7SnIg,242997
|
9
|
+
nonebot_plugin_l4d2_server/data/L4D2/image/template/fingerprint.svg,sha256=AwLa0b5WQjuatlNF4ob1sTJk2ZG3bi4S46AgoNbs10U,2150
|
10
|
+
nonebot_plugin_l4d2_server/data/L4D2/image/template/help - 副本.html,sha256=oHrIGU9bCTG1rFelUm7aLWHvsjRKI0fimW1srjewOVw,5829
|
11
|
+
nonebot_plugin_l4d2_server/data/L4D2/image/template/help.html,sha256=SxTXrQbo_4YkGj0IKV_Ll-RSZiXruPlS8ISwbc9yjkA,6206
|
12
|
+
nonebot_plugin_l4d2_server/data/L4D2/image/template/help_dack.html,sha256=g7tp8g_ZejiQBQrOti-EvcygJBFICnscU5ckrJ5Lp2A,6417
|
13
|
+
nonebot_plugin_l4d2_server/data/L4D2/image/template/ip.html,sha256=5uNt3wigNdAZX2gNX4nFOJghbXoiBJoceGyV5qcK9Xg,1595
|
14
|
+
nonebot_plugin_l4d2_server/data/L4D2/image/template/vue.css,sha256=2sGjCFrR-3tFMB_x7l4K6k40tZ5JVzhWqD759cagYBA,7874
|
15
|
+
nonebot_plugin_l4d2_server/data/L4D2/l4d2.json,sha256=_txrDFATQSxiGLENGyXATx1OcAqYDjHIzGzsYssJqwc,2591
|
16
|
+
nonebot_plugin_l4d2_server/l4d2_anne/__init__.py,sha256=5rcVF6r4fKgU4B-RLPO3kEbeiVkFS0s5S9Ild0AbyaU,8928
|
17
|
+
nonebot_plugin_l4d2_server/l4d2_anne/analysis.py,sha256=GNkqAxi-gKIdHnIScGRMQlVjPyDTDqo_C81a8bTskts,1209
|
18
|
+
nonebot_plugin_l4d2_server/l4d2_anne/anne_telecom.py,sha256=poAlUAgTvDryAtSa0CpQo5kawtJbddpWyt2JtIxzcgI,3085
|
19
|
+
nonebot_plugin_l4d2_server/l4d2_anne/server.py,sha256=_ZKRi0eLh7GnQJJaUUckaieWLzuLWaZL3brXcovjoOE,1702
|
20
|
+
nonebot_plugin_l4d2_server/l4d2_anne/startand.py,sha256=3veOrk5BUDvLG_Iuj0k6OT7EB0f9IIk655dLlSFla3w,376
|
21
|
+
nonebot_plugin_l4d2_server/l4d2_data/__init__.py,sha256=1JDSuJ1mCF_zIZZfvD-O1JZCgQ2ju_EH0Y3k6oLr2j4,3332
|
22
|
+
nonebot_plugin_l4d2_server/l4d2_data/config.py,sha256=1s0VUTX6Mx4aAOCym0bexNl3E-SHIQfmuv6-5qP1ymQ,485
|
23
|
+
nonebot_plugin_l4d2_server/l4d2_data/players.py,sha256=USNwhbilbllbW8AP5HK-QTITA-ndip5AMxvEIfuYtwE,3308
|
24
|
+
nonebot_plugin_l4d2_server/l4d2_data/serverip.py,sha256=AKZbr1YZkXRBUX1QNQyPfvhF3am0sY7Y9Ed_EAHlg4c,1316
|
25
|
+
nonebot_plugin_l4d2_server/l4d2_file/__init__.py,sha256=KvTdzPNTeNopoMHAGVn5IwEdtdm_Vjn8iqekVqr5U0o,4510
|
26
|
+
nonebot_plugin_l4d2_server/l4d2_image/__init__.py,sha256=iLx4-zICuYGFzVklb2jQZqxUAWK_oi-jPaS1s88IP1E,4173
|
27
|
+
nonebot_plugin_l4d2_server/l4d2_image/download.py,sha256=n1YQNMeTslbLMLbkRVfRFX6mipmxfI8HWQ7sG8bVXDI,4097
|
28
|
+
nonebot_plugin_l4d2_server/l4d2_image/htmlimg.py,sha256=bz1oJn-CUoPuBktJxGLrm1FsuMoehlt17pcoYVhIrVs,1070
|
29
|
+
nonebot_plugin_l4d2_server/l4d2_image/send_image_tool.py,sha256=DKliVudSSeec4Gl5Deji04-P4_bbSIvXWorEIPQpKDc,968
|
30
|
+
nonebot_plugin_l4d2_server/l4d2_image/steam.py,sha256=-N0dcTmnCu5UOjUik0UMWR3pTlCQK7PnkxGuZpju-TU,2481
|
31
|
+
nonebot_plugin_l4d2_server/l4d2_image/vtfs.py,sha256=2WuXE_4_5eVNExzYCTgZnKZrcE6CxqnDpjpKEA_FHCE,1427
|
32
|
+
nonebot_plugin_l4d2_server/l4d2_queries/__init__.py,sha256=Qv3aIDaqbP2J5zUXiOnfl9eJ1o0WKeGnC1qzOqfDgDo,3468
|
33
|
+
nonebot_plugin_l4d2_server/l4d2_queries/maps.py,sha256=EcyHLVIa801qADz1zO-TZwSdQpr4aHZEGz_M-UeDQQ4,669
|
34
|
+
nonebot_plugin_l4d2_server/l4d2_queries/ohter.py,sha256=HQzsbk10L5nUrPAaN-FvCJO9kmfOyXz8nrnZZezg8Ss,888
|
35
|
+
nonebot_plugin_l4d2_server/l4d2_queries/qqgroup.py,sha256=RkBAF-VrKYxVaSFjgpIslPOdj7CEDWcGdTUUUg1Q5XM,10297
|
36
|
+
nonebot_plugin_l4d2_server/l4d2_server/__init__.py,sha256=mp3Za6jJ-V92ChXRhl3k4D1tMTY4dqHdXgMzdWutccc,1676
|
37
|
+
nonebot_plugin_l4d2_server/l4d2_server/rcon.py,sha256=aP2n-sq_vM-h6UjnNCmKK9_WW8oS9zFySgowPl5FXd4,1160
|
38
|
+
nonebot_plugin_l4d2_server/l4d2_server/web.py,sha256=UanKE3YWvMRCEDqF9wCZKOK2CITgR61Dq6AgwP4zUMY,8727
|
39
|
+
nonebot_plugin_l4d2_server/l4d2_server/webUI.py,sha256=pRZEyTHWOTcoX_U8r2I342M60-g9h59BjaDwZqa_jUk,28187
|
40
|
+
nonebot_plugin_l4d2_server/l4d2_server/workshop.py,sha256=ZpWnWJ7EABNpDu86Rzoqu3tWoABanprIEcmej1zUT1A,1409
|
41
|
+
nonebot_plugin_l4d2_server/message.py,sha256=x_ts0HaW3SNOma-baEG0oaeozKE5Nh_fybnRH6VE8i0,1678
|
42
|
+
nonebot_plugin_l4d2_server/seach.py,sha256=dsusYogKH9pGeLxZz9BTheQwtJ3wAO3tfbePYdcaIuA,1025
|
43
|
+
nonebot_plugin_l4d2_server/txt_to_img.py,sha256=ZaxHYNu8aAZUH4fNALyE1Q_ET7KuWytEiMFZ9loZnqc,2188
|
44
|
+
nonebot_plugin_l4d2_server/utils.py,sha256=PEYguv-HIwXbR0Y17eisMrYbRL1HgDNuzKBo1_Stf-I,8296
|
45
|
+
README.md,sha256=Tk4QX5-s8fEa4mCEV4mFYFWdDss5yC4Ensp5dZjAEMQ,16973
|
46
|
+
nonebot_plugin_l4d2_server-0.3.5.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
47
|
+
nonebot_plugin_l4d2_server-0.3.5.dist-info/METADATA,sha256=ekNdv3wLvChX_Y6EQEN8NmKjgqJE9B4HwuTk10WSf3M,18519
|
48
|
+
nonebot_plugin_l4d2_server-0.3.5.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
49
|
+
nonebot_plugin_l4d2_server-0.3.5.dist-info/RECORD,,
|
Binary file
|