Module API - Configuration
superconf.configuration
Main configuratio class
Configuration
Bases: ConfigurationDict
Main configuration class supporting declarative field definitions.
This class allows fields to be declared as class attributes and provides a clean interface for defining configuration schemas.
Source code in superconf/configuration.py
ConfigurationDict
Bases: Store
Dictionary-based configuration container.
Provides a dictionary interface to configuration values and supports dynamic field creation based on input values.
Source code in superconf/configuration.py
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 |
|
set_dyn_children(value)
Set up dynamic children based on input value.
Creates fields dynamically for dictionary values that don't have corresponding declared fields.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Dictionary of configuration values |
required |
Source code in superconf/configuration.py
ConfigurationList
Bases: Store
List-based configuration container.
Provides a list interface to configuration values and supports dynamic field creation for list elements.
Source code in superconf/configuration.py
get_values(lvl=-1, **kwargs)
Get all configuration values as a list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
lvl
|
Recursion level for nested configurations |
-1
|
|
**kwargs
|
Additional arguments passed to parent method |
{}
|
Returns:
Type | Description |
---|---|
List of configuration values |
Source code in superconf/configuration.py
set_dyn_children(value)
Set up dynamic children based on input value.
Creates fields dynamically for list elements.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
List of configuration values |
required |
Source code in superconf/configuration.py
DeclarativeValuesMetaclass
Bases: type
Collect Value objects declared on the base classes
Source code in superconf/configuration.py
Node
Base class for configuration objects providing core configuration query functionality.
This class implements the basic configuration query mechanisms used by all configuration classes. It supports querying configuration values from various sources including instance attributes, class Meta attributes, and parent configurations.
Source code in superconf/configuration.py
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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
|
Meta
__init__(key=None, value=NOT_SET, parent=None)
Initialize a configuration base instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
The configuration key name |
None
|
|
value
|
The configuration value (defaults to NOT_SET) |
NOT_SET
|
|
parent
|
Parent configuration object if this is a child config |
None
|
Source code in superconf/configuration.py
get_hierarchy()
Return a list of parents NEW VERSION
query_cfg(name, include_self=True, report=False, **kwargs)
query_inst_cfg(*args, cast=None, report=False, **kwargs)
Query instance configuration with optional type casting.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*args
|
Variable length argument list passed to _query_inst_cfg |
()
|
|
cast
|
Optional type to cast the result to |
None
|
|
**kwargs
|
Arbitrary keyword arguments passed to _query_inst_cfg |
{}
|
Returns:
Type | Description |
---|---|
The configuration value, optionally cast to the specified type |
Source code in superconf/configuration.py
query_parent_cfg(name, as_subkey=False, cast=None, default=UNSET_ARG, include_self=False, report=False)
Query configuration from parent object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
Configuration setting name to query |
required | |
as_subkey
|
If True and parent value is dict, get self.key from it |
False
|
|
cast
|
Optional type to cast the result to |
None
|
|
default
|
Default value if setting is not found |
UNSET_ARG
|
Returns:
Type | Description |
---|---|
The configuration value from the parent, optionally cast to specified type |
Raises:
Type | Description |
---|---|
UnknownSetting
|
If no parent exists and no default is provided |
Source code in superconf/configuration.py
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 254 255 256 257 |
|
Store
Bases: Node
Base configuration container class that manages configuration fields and values.
This class extends Node to provide field management, value caching, and dynamic child configuration creation capabilities.
Source code in superconf/configuration.py
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 |
|
cast
property
Temporary property to access to self._default
declared_fields
property
Return declared fields
default
property
Temporary property to access to self._default
__init__(*, key=None, value=NOT_SET, parent=None, meta=None, **kwargs)
Initialize a configuration container.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
Configuration key name |
None
|
|
value
|
Initial configuration value |
NOT_SET
|
|
parent
|
Parent configuration object |
None
|
|
meta
|
Optional meta configuration |
None
|
|
**kwargs
|
Additional configuration options |
{}
|
Source code in superconf/configuration.py
create_child(key, field, value=NOT_SET, **kwargs)
:param item: Name of the setting to lookup.
:param default: Default value if none is provided. If left unset,
loading a self that fails to provide this value
will raise a UnknownConfiguration exception.
:param cast: Callable to cast variable with. Defaults to type of
default (if provided), identity if default is not
provided or raises TypeError if provided cast is not
callable.
:param loaders: A list of loader instances in the order they should be
looked into. Defaults to [Environment()]
Source code in superconf/configuration.py
get_field_value(key=None, field=None, default=UNSET_ARG, **kwargs)
Get value for a configuration field.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
Configuration key name |
None
|
|
field
|
Configuration field object |
None
|
|
default
|
Default value if not found |
UNSET_ARG
|
|
**kwargs
|
Additional arguments for child creation |
{}
|
Returns:
Type | Description |
---|---|
Configuration value for the specified field |
Raises:
Type | Description |
---|---|
UndeclaredField
|
If field is not found and no default provided |
Source code in superconf/configuration.py
get_value(key, lvl=-1, **kwargs)
Get configuration value for a given key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
Configuration key to retrieve |
required | |
lvl
|
Recursion level for nested configurations |
-1
|
|
**kwargs
|
Additional arguments passed to get_field_value |
{}
|
Returns:
Type | Description |
---|---|
Configuration value for the specified key |
Source code in superconf/configuration.py
get_values(lvl=-1, **kwargs)
Return all values of the container
Source code in superconf/configuration.py
reset()
Reset all loaders and clear cached values.
This should be called when configuration values need to be reloaded.
set_dyn_children(value)
set_values(value, lookup=False)
Set a value