nonebot2/docs/api/nonebot.md

270 lines
3.5 KiB
Markdown
Raw Normal View History

2020-08-23 09:03:59 +00:00
---
contentSidebar: true
sidebarDepth: 0
---
2020-08-19 12:29:37 +00:00
# NoneBot 模块
2020-10-08 13:36:57 +00:00
## 快捷导入
为方便使用,`nonebot` 模块从子模块导入了部分内容
* `on_message` => `nonebot.plugin.on_message`
* `on_notice` => `nonebot.plugin.on_notice`
* `on_request` => `nonebot.plugin.on_request`
* `on_metaevent` => `nonebot.plugin.on_metaevent`
* `on_startswith` => `nonebot.plugin.on_startswith`
* `on_endswith` => `nonebot.plugin.on_endswith`
2020-11-10 09:36:13 +00:00
* `on_keyword` => `nonebot.plugin.on_keyword`
2020-10-08 13:36:57 +00:00
2020-11-10 09:36:13 +00:00
* `on_command` => `nonebot.plugin.on_command`
2020-10-08 13:36:57 +00:00
2021-02-02 04:16:37 +00:00
* `on_shell_command` => `nonebot.plugin.on_shell_command`
2020-10-08 13:36:57 +00:00
* `on_regex` => `nonebot.plugin.on_regex`
* `CommandGroup` => `nonebot.plugin.CommandGroup`
2020-12-04 17:43:58 +00:00
* `Matchergroup` => `nonebot.plugin.MatcherGroup`
2020-10-08 13:36:57 +00:00
* `load_plugin` => `nonebot.plugin.load_plugin`
* `load_plugins` => `nonebot.plugin.load_plugins`
* `load_builtin_plugins` => `nonebot.plugin.load_builtin_plugins`
2020-11-21 12:50:33 +00:00
* `get_plugin` => `nonebot.plugin.get_plugin`
2020-10-08 13:36:57 +00:00
* `get_loaded_plugins` => `nonebot.plugin.get_loaded_plugins`
2020-08-19 12:29:37 +00:00
2020-11-21 12:50:33 +00:00
* `export` => `nonebot.plugin.export`
* `require` => `nonebot.plugin.require`
2020-08-20 07:07:05 +00:00
## `get_driver()`
2020-08-19 12:29:37 +00:00
* **说明**
2020-08-19 15:00:31 +00:00
获取全局 Driver 对象。可用于在计划任务的回调中获取当前 Driver 对象。
2020-08-19 12:29:37 +00:00
* **返回**
2020-08-19 15:00:31 +00:00
* `Driver`: 全局 Driver 对象
2020-08-19 12:29:37 +00:00
* **异常**
* `ValueError`: 全局 Driver 对象尚未初始化 (nonebot.init 尚未调用)
* **用法**
```python
2020-08-19 15:00:31 +00:00
driver = nonebot.get_driver()
2020-08-19 12:29:37 +00:00
```
2020-08-20 07:07:05 +00:00
## `get_app()`
2020-08-19 12:29:37 +00:00
* **说明**
2020-08-19 15:00:31 +00:00
获取全局 Driver 对应 Server App 对象。
2020-08-19 12:29:37 +00:00
* **返回**
2020-08-19 15:00:31 +00:00
* `Any`: Server App 对象
2020-08-19 12:29:37 +00:00
* **异常**
* `ValueError`: 全局 Driver 对象尚未初始化 (nonebot.init 尚未调用)
* **用法**
```python
2020-08-19 15:00:31 +00:00
app = nonebot.get_app()
2020-08-19 12:29:37 +00:00
```
2020-08-20 07:07:05 +00:00
## `get_asgi()`
2020-08-19 12:29:37 +00:00
* **说明**
2020-08-19 15:00:31 +00:00
获取全局 Driver 对应 Asgi 对象。
2020-08-19 12:29:37 +00:00
* **返回**
2020-08-19 15:00:31 +00:00
* `Any`: Asgi 对象
2020-08-19 12:29:37 +00:00
* **异常**
* `ValueError`: 全局 Driver 对象尚未初始化 (nonebot.init 尚未调用)
* **用法**
```python
2020-08-19 15:00:31 +00:00
asgi = nonebot.get_asgi()
2020-08-19 12:29:37 +00:00
```
2020-08-20 07:07:05 +00:00
## `get_bots()`
2020-08-19 12:29:37 +00:00
* **说明**
2020-08-19 15:00:31 +00:00
获取所有通过 ws 连接 NoneBot 的 Bot 对象。
2020-08-19 12:29:37 +00:00
* **返回**
2020-08-19 15:00:31 +00:00
* `Dict[str, Bot]`: 一个以字符串 ID 为键Bot 对象为值的字典
2020-08-19 12:29:37 +00:00
* **异常**
* `ValueError`: 全局 Driver 对象尚未初始化 (nonebot.init 尚未调用)
* **用法**
```python
2020-08-19 15:00:31 +00:00
bots = nonebot.get_bots()
2020-08-19 12:29:37 +00:00
```
2020-08-20 07:07:05 +00:00
## `init(*, _env_file=None, **kwargs)`
2020-08-19 12:29:37 +00:00
* **说明**
初始化 NoneBot 以及 全局 Driver 对象。
NoneBot 将会从 .env 文件中读取环境信息,并使用相应的 env 文件配置。
你也可以传入自定义的 _env_file 来指定 NoneBot 从该文件读取配置。
* **参数**
* `_env_file: Optional[str]`: 配置文件名,默认从 .env.{env_name} 中读取配置
* `**kwargs`: 任意变量,将会存储到 Config 对象里
* **返回**
2020-09-13 05:01:23 +00:00
* `None`
2020-08-19 12:29:37 +00:00
* **用法**
```python
nonebot.init(database=Database(...))
```
2020-08-20 07:07:05 +00:00
## `run(host=None, port=None, *args, **kwargs)`
2020-08-19 12:29:37 +00:00
* **说明**
启动 NoneBot即运行全局 Driver 对象。
* **参数**
* `host: Optional[str]`: 主机名IP若不传入则使用配置文件中指定的值
* `port: Optional[int]`: 端口,若不传入则使用配置文件中指定的值
* `*args`: 传入 Driver.run 的位置参数
* `**kwargs`: 传入 Driver.run 的命名参数
* **返回**
2020-09-13 05:01:23 +00:00
* `None`
2020-08-19 12:29:37 +00:00
* **用法**
```python
nonebot.run(host="127.0.0.1", port=8080)
```