🔖 Release 2.0.0-beta.2

This commit is contained in:
github-actions
2022-02-14 16:27:11 +00:00
parent 14703fce8d
commit cee96d8ab6
72 changed files with 9781 additions and 0 deletions

View File

@ -0,0 +1,3 @@
{
"position": 13
}

View File

@ -0,0 +1,106 @@
---
sidebar_position: 0
description: nonebot.dependencies 模块
---
# nonebot.dependencies
本模块模块实现了依赖注入的定义与处理。
## _abstract class_ `Param(default=PydanticUndefined, **kwargs)` {#Param}
- **说明**
依赖注入的基本单元 —— 参数。
继承自 `pydantic.fields.FieldInfo`,用于描述参数信息(不包括参数名)。
- **参数**
- `default` (Any)
- `**kwargs` (Any)
## _class_ `Dependent(*, call, pre_checkers=None, params=None, parameterless=None, allow_types=None)` {#Dependent}
- **说明**
依赖注入容器
- **参数**
- `call` ((\*Any, \*\*Any) -> Any): 依赖注入的可调用对象,可以是任何 Callable 对象
- `pre_checkers` (list[[Param](#Param)] | None): 依赖注入解析前的参数检查
- `params` (list[pydantic.fields.ModelField] | None): 具名参数列表
- `parameterless` (list[[Param](#Param)] | None): 匿名参数列表
- `allow_types` (list[Type[[Param](#Param)]] | None): 允许的参数类型
### _method_ `append_parameterless(self, value)` {#Dependent-append_parameterless}
- **参数**
- `value` (Any)
- **返回**
- None
### _classmethod_ `parse(cls, *, call, parameterless=None, allow_types=None)` {#Dependent-parse}
- **参数**
- `call` ((\*Any, \*\*Any) -> Any)
- `parameterless` (list[Any] | None)
- `allow_types` (list[Type[[Param](#Param)]] | None)
- **返回**
- (~ T)
### _method_ `parse_param(self, name, param)` {#Dependent-parse_param}
- **参数**
- `name` (str)
- `param` (inspect.Parameter)
- **返回**
- [Param](#Param)
### _method_ `parse_parameterless(self, value)` {#Dependent-parse_parameterless}
- **参数**
- `value` (Any)
- **返回**
- [Param](#Param)
### _method_ `prepend_parameterless(self, value)` {#Dependent-prepend_parameterless}
- **参数**
- `value` (Any)
- **返回**
- None
### _async method_ `solve(self, **params)` {#Dependent-solve}
- **参数**
- `**params` (Any)
- **返回**
- dict[str, Any]

View File

@ -0,0 +1,48 @@
---
sidebar_position: 1
description: nonebot.dependencies.utils 模块
---
# nonebot.dependencies.utils
## _def_ `get_typed_signature(call)` {#get_typed_signature}
- **说明**
获取可调用对象签名
- **参数**
- `call` ((\*Any, \*\*Any) -> Any)
- **返回**
- inspect.Signature
## _def_ `get_typed_annotation(param, globalns)` {#get_typed_annotation}
- **说明**
获取参数的类型注解
- **参数**
- `param` (inspect.Parameter)
- `globalns` (dict[str, Any])
- **返回**
- Any
## _def_ `check_field_type(field, value)` {#check_field_type}
- **参数**
- `field` (pydantic.fields.ModelField)
- `value` ((~ V))
- **返回**
- (~ V)