nonebot-plugin-template 0.0.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,31 @@
1
+ from nonebot import (
2
+ require, # noqa: F401
3
+ get_driver, # @get_driver().on_startup 装饰启动时运行函数 # noqa: F401
4
+ get_bots, # dict[str, BaseBot] 常用于定时器获取 BOT 对象 # noqa: F401
5
+ )
6
+ from nonebot.plugin import (
7
+ PluginMetadata,
8
+ inherit_supported_adapters
9
+ )
10
+
11
+ require("nonebot_plugin_uninfo")
12
+ require("nonebot_plugin_alconna")
13
+ require("nonebot_plugin_localstore")
14
+ require("nonebot_plugin_apscheduler")
15
+
16
+ from .config import Config # noqa: E402
17
+
18
+
19
+ __plugin_meta__ = PluginMetadata(
20
+ name="名称",
21
+ description="描述",
22
+ usage="用法",
23
+ type="application", # library
24
+ homepage="https://github.com/用户名/nonebot-plugin-",
25
+ config=Config,
26
+ supported_adapters=inherit_supported_adapters(
27
+ "nonebot_plugin_alconna", "nonebot_plugin_uninfo"
28
+ ),
29
+ # supported_adapters={"~onebot.v11"},
30
+ extra={"author": "fllesser <fllessive@gmail.com>"},
31
+ )
@@ -0,0 +1,24 @@
1
+ from nonebot import (
2
+ get_driver,
3
+ get_plugin_config
4
+ )
5
+ from pydantic import BaseModel
6
+ from pathlib import Path
7
+ from typing import List, Literal, Optional # noqa: F401
8
+
9
+ from nonebot_plugin_apscheduler import scheduler # noqa: F401
10
+ import nonebot_plugin_localstore as store
11
+
12
+ class Config(BaseModel):
13
+ pass
14
+
15
+ cache_dir: Path = store.get_plugin_cache_dir()
16
+ config_dir: Path = store.get_plugin_config_dir()
17
+ data_dir: Path = store.get_plugin_data_dir()
18
+
19
+ # 配置加载
20
+ config: Config = get_plugin_config(Config)
21
+ gconfig = get_driver().config
22
+
23
+ # 全局名称
24
+ NICKNAME: str = next(iter(gconfig.nickname), None)
@@ -0,0 +1,17 @@
1
+ from nonebot_plugin_alconna import on_alconna # noqa: F401
2
+ from arclet.alconna import (
3
+ Args,
4
+ Alconna,
5
+ Option,
6
+ Subcommand
7
+ )
8
+
9
+ alc = Alconna(
10
+ "pip",
11
+ Subcommand(
12
+ "install",
13
+ Args["package", str],
14
+ Option("-r|--requirement", Args["file", str]),
15
+ Option("-i|--index-url", Args["url", str]),
16
+ )
17
+ )
@@ -0,0 +1,144 @@
1
+ Metadata-Version: 2.2
2
+ Name: nonebot-plugin-template
3
+ Version: 0.0.1
4
+ Summary: 插件描述
5
+ Author-email: fllesser <fllessive@gmail.com>
6
+ Requires-Python: <3.13,>=3.10
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: httpx<1.0.0,>=0.27.0
9
+ Requires-Dist: nonebot2<3.0.0,>=2.4.0
10
+ Requires-Dist: nonebot-adapter-onebot<3.0.0,>=2.4.6
11
+ Requires-Dist: nonebot-plugin-uninfo<1.0.0,>=0.6.5
12
+ Requires-Dist: nonebot-plugin-alconna<1.0.0,>=0.54.2
13
+ Requires-Dist: nonebot-plugin-localstore<1.0.0,>=0.7.3
14
+ Requires-Dist: nonebot-plugin-apscheduler<1.0.0,>=0.5.0
15
+
16
+ <div align="center">
17
+ <a href="https://v2.nonebot.dev/store"><img src="https://github.com/fllesser/nonebot-plugin-template/blob/master/.docs/NoneBotPlugin.svg" width="380" height="177" alt="NoneBotPluginLogo"></a>
18
+ </div>
19
+
20
+ <div align="center">
21
+
22
+ # nonebot-plugin-PPPPP
23
+
24
+ _✨ NoneBot 插件简单描述 ✨_
25
+
26
+
27
+ <a href="./LICENSE">
28
+ <img src="https://img.shields.io/github/license/owner/nonebot-plugin-PPPPP.svg" alt="license">
29
+ </a>
30
+ <a href="https://pypi.python.org/pypi/nonebot-plugin-PPPPP">
31
+ <img src="https://img.shields.io/pypi/v/nonebot-plugin-PPPPP.svg" alt="pypi">
32
+ </a>
33
+ <img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="python">
34
+
35
+ </div>
36
+
37
+ 这是一个 nonebot2 插件项目的模板库, 你可以直接使用本模板创建你的 nonebot2 插件项目的仓库
38
+
39
+ <details open>
40
+ <summary>模板库使用方法</summary>
41
+
42
+ 1. 点击 [![start-course](https://user-images.githubusercontent.com/1221423/235727646-4a590299-ffe5-480d-8cd5-8194ea184546.svg)](https://github.com/new?template_owner=fllesser&template_name=nonebot-plugin-template&owner=%40me&name=nonebot-plugin-&visibility=public) 创建仓库
43
+ 2. 在创建好的新仓库中, 在 "Add file" 菜单中选择 "Create new file", 在新文件名处输入`LICENSE`, 此时在右侧会出现一个 "Choose a license template" 按钮, 点击此按钮选择开源协议模板, 然后在最下方提交新文件到主分支
44
+ 3. 全局替换`owner`为仓库所有者ID; 全局替换`PPPPP`为插件名; 全局替换`ppppp`为包名; 修改 python 徽标中的版本为你插件的运行所需版本
45
+ 4. 修改 README 中的插件名和插件描述, 并在下方填充相应的内容
46
+
47
+ </details>
48
+
49
+ > [!NOTE]
50
+ > 模板库中自带了一个发布工作流, 你可以使用此工作流自动发布你的插件到 pypi
51
+
52
+ <details>
53
+ <summary>配置发布工作流</summary>
54
+
55
+ 1. 前往 https://pypi.org/manage/account/#api-tokens 并创建一个新的 API 令牌。创建成功后不要关闭页面,不然你将无法再次查看此令牌。
56
+ 2. 在单独的浏览器选项卡或窗口中,打开 [Actions secrets and variables](./settings/secrets/actions) 页面。你也可以在 Settings - Secrets and variables - Actions 中找到此页面。
57
+ 3. 点击 New repository secret 按钮,创建一个名为 `PYPI_API_TOKEN` 的新令牌,并从第一步复制粘贴令牌。
58
+
59
+ </details>
60
+
61
+ > [!IMPORTANT]
62
+ > 这个发布工作流需要 pyproject.toml 文件, 并且只支持 [PEP 621](https://peps.python.org/pep-0621/) 标准的 pyproject.toml 文件
63
+
64
+ <details>
65
+ <summary>触发发布工作流</summary>
66
+ 从本地推送任意 tag 即可触发。
67
+
68
+ 创建 tag:
69
+
70
+ git tag <tag_name>
71
+
72
+ 推送本地所有 tag:
73
+
74
+ git push origin --tags
75
+
76
+ </details>
77
+
78
+ ## 📖 介绍
79
+
80
+ 这里是插件的详细介绍部分
81
+
82
+ ## 💿 安装
83
+
84
+ <details open>
85
+ <summary>使用 nb-cli 安装</summary>
86
+ 在 nonebot2 项目的根目录下打开命令行, 输入以下指令即可安装
87
+
88
+ nb plugin install nonebot-plugin-PPPPP --upgrade
89
+
90
+ nb plugin install nonebot-plugin-PPPPP --upgrade -i "https://pypi.org/simple"
91
+
92
+
93
+ </details>
94
+
95
+ <details>
96
+ <summary>使用包管理器安装</summary>
97
+ 在 nonebot2 项目的插件目录下, 打开命令行, 根据你使用的包管理器, 输入相应的安装命令
98
+
99
+ <details>
100
+ <summary>pip</summary>
101
+
102
+ pip install nonebot-plugin-PPPPP --upgrade -i "https://pypi.org/simple"
103
+
104
+ </details>
105
+ <details>
106
+ <summary>pdm</summary>
107
+
108
+ pdm add nonebot-plugin-PPPPP
109
+ </details>
110
+ <details>
111
+ <summary>poetry</summary>
112
+
113
+ poetry add nonebot-plugin-PPPPP
114
+ </details>
115
+ <details>
116
+ <summary>conda</summary>
117
+
118
+ conda install nonebot-plugin-PPPPP
119
+ </details>
120
+
121
+ 打开 nonebot2 项目根目录下的 `pyproject.toml` 文件, 在 `[tool.nonebot]` 部分追加写入
122
+
123
+ plugins = ["nonebot_plugin_ppppp"]
124
+
125
+ </details>
126
+
127
+ ## ⚙️ 配置
128
+
129
+ 在 nonebot2 项目的`.env`文件中添加下表中的必填配置
130
+
131
+ | 配置项 | 必填 | 默认值 | 说明 |
132
+ |:-----:|:----:|:----:|:----:|
133
+ | 配置项1 | 是 | 无 | 配置说明 |
134
+ | 配置项2 | 否 | 无 | 配置说明 |
135
+
136
+ ## 🎉 使用
137
+ ### 指令表
138
+ | 指令 | 权限 | 需要@ | 范围 | 说明 |
139
+ |:-----:|:----:|:----:|:----:|:----:|
140
+ | 指令1 | 主人 | 否 | 私聊 | 指令说明 |
141
+ | 指令2 | 群员 | 是 | 群聊 | 指令说明 |
142
+
143
+ ### 效果图
144
+ 如果有效果图的话
@@ -0,0 +1,7 @@
1
+ nonebot_plugin_template/__init__.py,sha256=MQm6rVkCjzOQC1vTLcjdK-JgtGFV-2ZBBGXvLHcP11Q,922
2
+ nonebot_plugin_template/config.py,sha256=Gkka6rMAONFvMaoOk3_DFlC0nnPCir6H4jpYQlA475s,614
3
+ nonebot_plugin_template/matcher.py,sha256=P4b3WPXJUfnhyv44y7DxIhTejeG6TLfbg4IR10rWJ8s,348
4
+ nonebot_plugin_template-0.0.1.dist-info/METADATA,sha256=jUf1SEzCjQR5WU-vAdWtZRuw6bPdIjqwBBUajKRXowM,4814
5
+ nonebot_plugin_template-0.0.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
6
+ nonebot_plugin_template-0.0.1.dist-info/top_level.txt,sha256=G7Xv7ZOVFivKfzV_DWOOUNTBvgiGJ7_jdvJejWUwOB4,24
7
+ nonebot_plugin_template-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.8.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ nonebot_plugin_template