console
Ariadne 控制台
注意, 本实现并不 robust, 但是可以使用
Console 🔗
Ariadne 的控制台, 可以脱离 Ariadne 实例运行
警告: 本实现无法确保稳定性
Source code in src/graia/ariadne/console/__init__.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
|
__init__ 🔗
__init__(
broadcast: Broadcast,
prompt: Union[
Callable[[], str], AnyFormattedText
] = "{library_name} {graia_ariadne_version}>",
*,
r_prompt: Union[Callable[[], str], AnyFormattedText] = "",
style: Optional[Style] = None,
extra_data_getter: Iterable[Callable[[], Dict[str, Any]]] = (),
replace_logger: bool = True,
listen_launch: bool = True,
listen_shutdown: bool = True
) -> None
初始化控制台.
Parameters:
-
broadcast
(
Broadcast
) –事件系统.
-
prompt
(
AnyFormattedText
) –输入提示, 可使用 f-string 形式的格式化字符串. 默认为 "{library_name} {graia_ariadne_version}>".
-
r_prompt
(
AnyFormattedText
) –右侧提示, 可使用 f-string 形式的格式化字符串. 默认为空.
-
style
(
Style
) –输入提示的格式, 详见 prompt_toolkit 的介绍.
-
extra_data_getter
(
Iterable[() -> Dict[str, Any]
) –额外的 Callable, 用于生成 prompt 的格式化数据.
-
replace_logger
(
bool
) –是否尝试替换 loguru 的 0 号 handler (sys.stderr) 为 StdoutProxy. 默认为 True.
-
listen_launch
(
bool
) –是否监听 Ariadne 的 ApplicationLaunched 事件并启动自身, 默认为 True.
-
listen_shutdown
(
bool
) –是否监听 Ariadne 的 ApplicationShutdowned 事件并停止自身, 默认为 True.
Source code in src/graia/ariadne/console/__init__.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
data_getter 🔗
data_getter() -> Dict[str, Any]
返回用于 prompt 的数据
Returns:
Source code in src/graia/ariadne/console/__init__.py
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
join
async
🔗
join()
等待 Console 结束, 异步, 幂等
Source code in src/graia/ariadne/console/__init__.py
231 232 233 234 235 |
|
loop
async
🔗
loop() -> None
Console 的输入循环
Source code in src/graia/ariadne/console/__init__.py
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
|
prompt
async
🔗
prompt(
l_prompt: Optional[AnyFormattedText] = None,
r_prompt: Optional[AnyFormattedText] = None,
style: Optional[Style] = None,
) -> str
向控制台发送一个输入请求, 异步
Parameters:
-
l_prompt
(
AnyFormattedText
) –左输入提示, 可使用 f-string 形式的格式化字符串. 默认为 "{library_name} {graia_ariadne_version}>". 注意为 l_prompt .
-
r_prompt
(
AnyFormattedText
) –右侧提示, 可使用 f-string 形式的格式化字符串. 默认为空.
-
style
(
Style
) –输入提示的格式, 详见 prompt_toolkit 的介绍.
Returns:
-
str(
str
) –输入结果
Source code in src/graia/ariadne/console/__init__.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
|
register 🔗
register(
dispatchers: Optional[List[BaseDispatcher]] = None,
decorators: Optional[List[Decorator]] = None,
)
注册命令处理函数
Parameters:
-
dispatchers
(
List[BaseDispatcher]
) –使用的 Dispatcher 列表.
-
decorators
(
List[Decorator]
) –使用的 Decorator 列表.
Source code in src/graia/ariadne/console/__init__.py
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
|
start 🔗
start()
启动 Console, 幂等
Source code in src/graia/ariadne/console/__init__.py
207 208 209 210 211 212 213 214 215 216 217 |
|
stop 🔗
stop()
提示 Console 停止, 非异步, 幂等
Source code in src/graia/ariadne/console/__init__.py
219 220 221 222 223 224 225 226 227 228 229 |
|