Kayaku🔗
kayaku.Kayaku 🔗
配置管理器。
Example:
```py
from dataclasses import dataclass
from kayaku import ConfigManager
cfg_manager = ConfigManager({"{**}.connection": "./config/connection.jsonc::{**}})
@dataclass
class Connection:
account: int | None = None
password: str | None = None
cfg_manager.register("my_mod.config.connection", Connection)
cfg_manager.load()
```
以上代码将会将 `Connection` 类的数据存储在 `./config/connection.jsonc` 文件的 `["my_mod"]["config"]` 里.
Source code in kayaku/manager.py
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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
|
get 🔗
get(cls: type[DC_T], safe: Literal[False] = False) -> DC_T
get(cls: type[DC_T], safe: Literal[True]) -> DC_T | None
get(cls: type[DC_T], safe: bool = False) -> DC_T | None
获取配置类的实例。
Source code in kayaku/manager.py
254 255 256 257 258 259 |
|
load 🔗
load(domain_map: dict[str, type[DataClass]]) -> None
加载配置类。
Source code in kayaku/manager.py
244 245 246 |
|
kayaku.pretty.Prettifier 🔗
Prettifier(indent: int = 4, trail_comma: bool = True, key_quote: Quote | None | Literal[False] = False, string_quote: Quote | None = Quote.DOUBLE, unfold_single: bool = False)
容器格式化工具
Parameters:
-
indent
(int
, default:4
) –缩进数量. Defaults to 4.
-
trail_comma
(bool
, default:True
) –是否要为容器增加尾随逗号. Defaults to True.
-
key_quote
(Quote | None | Literal[False]
, default:False
) –键使用的引号风格, None 为保留, Quote.DOUBLE 为双引号, Quote.SINGLE 为单引号, False 为尽可能去除引号. Defaults to False.
-
string_quote
(Quote | None
, default:DOUBLE
) –值中字符串使用的引号风格, 解释同上. Defaults to Quote.DOUBLE.
-
unfold_single
(bool
, default:False
) –单个元素的容器是否展开. Defaults to False.
Source code in kayaku/pretty.py
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 |
|