config
Main configuration management API.
Sparkwheel is a YAML-based configuration system with references, expressions, and dynamic instantiation. This module provides the main Config class for loading, managing, and resolving configurations.
Two-Phase Processing
Sparkwheel uses a two-phase processing model to handle different reference types at appropriate times:
Phase 1: Eager Processing (during update())
- External file raw refs (
%file.yaml::key): Expanded immediately - Purpose: External files are frozen - their content won't change
- Example:
%base.yaml::lris replaced with the actual value from base.yaml
Phase 2: Lazy Processing (during resolve())
- Local raw refs (
%key): Expanded after all composition is complete - Resolved References (
@): Resolved on-demand to support circular dependencies - Expressions (
$): Evaluated when needed using Python's eval() - Components (
_target_): Instantiated only when requested - Purpose: CLI overrides can affect local
%refs, supports deferred instantiation
Reference Types
| Symbol | Name | When Expanded | Purpose | Example |
|---|---|---|---|---|
% |
Raw Reference (external) | Eager (update()) | Copy from external files | %base.yaml::lr |
% |
Raw Reference (local) | Lazy (resolve()) | Copy local config values | %vars::lr |
@ |
Resolved Reference | Lazy (resolve()) | Reference config values | @model::lr |
$ |
Expression | Lazy (resolve()) | Compute values dynamically | $@lr * 2 |
Key Methods
get(id): Returns raw config value (unresolved, from_data)resolve(id): Follows references, evaluates expressions, instantiates componentsupdate(source): Loads and merges configuration from file, dict, or CLI stringset(id, value): Sets a config value at the given path
Important: get() vs resolve()
These methods serve different purposes:
get()always returns raw values from the internal_datadict- Returns
"@model::lr"(the string) - Fast, no resolution or caching
-
Always returns raw data, even after resolve() has been called
-
resolve()follows references and instantiates objects - Returns
0.001(the actual value) - Uses a separate resolution cache (
_resolver._resolved) - Evaluates expressions, instantiates components
Example
This separation ensures that: 1. Raw config structure is always accessible 2. Resolution happens lazily and is cached separately 3. Multiple resolve() calls are efficient (uses cache) 4. You can inspect raw references without triggering resolution
Quick Start
from sparkwheel import Config
# Load and merge configs
config = Config()
config.update("base.yaml")
config.update("experiment.yaml")
# Get raw values
lr = config.get("model::lr") # Raw value (may be "@base::lr")
# Resolve references and instantiate
model = config.resolve("model") # Actual instantiated model object
lr_resolved = config.resolve("model::lr") # Resolved value (e.g., 0.001)
CLI Overrides
# Auto-detects override syntax
config.update("model::lr=0.001") # Compose (merge)
config.update("=model::lr=0.001") # Replace
config.update("~model::old_param") # Delete
See Config class docstring for full API details.
Config
Configuration management with continuous validation, coercion, resolved references, and instantiation.
Main entry point for loading, managing, and resolving configurations. Supports YAML files with resolved references (@), raw references (%), expressions ($), and dynamic instantiation (target).
Example
from sparkwheel import Config
# Create and load from file
config = Config(schema=MySchema)
config.update("config.yaml")
# Or chain multiple sources
config = Config(schema=MySchema)
config.update("base.yaml")
config.update("override.yaml")
config.update({"model::lr": 0.001})
# Access raw values
lr = config.get("model::lr")
# Set values (validates automatically if schema provided)
config.set("model::dropout", 0.1)
# Freeze to prevent modifications
config.freeze()
# Resolve references and instantiate
model = config.resolve("model")
everything = config.resolve()
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
imports
|
dict[str, Any] | None
|
Pre-imported packages for expressions (e.g., {"torch": "torch"}) |
None
|
schema
|
type | None
|
Dataclass schema for continuous validation |
None
|
coerce
|
bool
|
Auto-convert compatible types (default: True) |
True
|
strict
|
bool
|
Reject fields not in schema (default: True) |
True
|
allow_missing
|
bool
|
Allow MISSING sentinel values (default: False) |
False
|
Source code in src/sparkwheel/config.py
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 269 270 271 272 273 274 275 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 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 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 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 | |
locations
property
Get the location registry for this config.
Returns:
| Type | Description |
|---|---|
LocationRegistry
|
LocationRegistry tracking file locations of config keys |
Example
config = Config().update("config.yaml") location = config.locations.get("model::lr") print(f"{location.filepath}:{location.line}")
__contains__(id)
Check if ID exists in config.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id
|
str
|
ID path to check |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if exists, False otherwise |
Source code in src/sparkwheel/config.py
__getitem__(id)
Get config value by ID (subscript access).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id
|
str
|
Configuration path |
required |
Returns:
| Type | Description |
|---|---|
Any
|
Config value at that path |
Example
config = Config().update({"model": {"lr": 0.001}}) config["model::lr"] 0.001
Source code in src/sparkwheel/config.py
__init__(data=None, *, imports=None, schema=None, coerce=True, strict=True, allow_missing=False)
Initialize Config container.
Normally starts empty - use update() to load data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict[str, Any] | None
|
Initial data (internal/testing use only, not validated) |
None
|
imports
|
dict[str, Any] | None
|
Pre-imported packages for expression evaluation |
None
|
schema
|
type | None
|
Dataclass schema for continuous validation |
None
|
coerce
|
bool
|
Auto-convert compatible types |
True
|
strict
|
bool
|
Reject fields not in schema |
True
|
allow_missing
|
bool
|
Allow MISSING sentinel values |
False
|
Examples:
Source code in src/sparkwheel/config.py
__repr__()
__setitem__(id, value)
Set config value by ID (subscript access).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id
|
str
|
Configuration path |
required |
value
|
Any
|
Value to set |
required |
Example
config = Config().update({}) config["model::lr"] = 0.001
Source code in src/sparkwheel/config.py
_apply_path_updates(source)
Apply nested path updates (e.g., model::lr=value, =model=replace, ~old::param=null).
Source code in src/sparkwheel/config.py
_apply_structural_update(source)
Apply structural update with operators.
Source code in src/sparkwheel/config.py
_delete_nested_key(key)
Delete a key, supporting nested paths with ::.
Source code in src/sparkwheel/config.py
_get_by_id(id)
Get config value by ID path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id
|
str
|
ID path (e.g., "model::lr") |
required |
Returns:
| Type | Description |
|---|---|
Any
|
Config value at that path |
Raises:
| Type | Description |
|---|---|
KeyError
|
If path not found (includes available keys in message) |
TypeError
|
If trying to index a non-dict/list value |
Source code in src/sparkwheel/config.py
_invalidate_resolution()
_parse(reset=True)
Parse config tree and prepare for resolution.
Internal method called automatically by resolve().
Two-phase raw reference expansion: - Phase 1 (update): External file refs expanded eagerly - Phase 2 (here): Local refs expanded now, after all composition
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
reset
|
bool
|
Whether to reset the resolver before parsing (default: True) |
True
|
Source code in src/sparkwheel/config.py
_process_imports_key()
Process imports key from config data.
The imports key allows declaring imports directly in YAML:
These imports become available to all expressions in the config. The imports key is removed from the data after processing.
Source code in src/sparkwheel/config.py
_update_from_config(source)
Update from another Config instance.
Source code in src/sparkwheel/config.py
_update_from_file(source)
Load and update from a file.
Source code in src/sparkwheel/config.py
_update_from_override_string(override)
Parse and apply a single override string (e.g., 'key=value', '=key=value', '~key').
_uses_nested_paths(source)
export_config_file(config, filepath, **kwargs)
staticmethod
Export config to YAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
dict[str, Any]
|
Config dict to export |
required |
filepath
|
PathLike
|
Target file path |
required |
kwargs
|
Any
|
Additional arguments for yaml.safe_dump |
{}
|
Source code in src/sparkwheel/config.py
freeze()
Freeze config to prevent further modifications.
After freezing: - set() raises FrozenConfigError - update() raises FrozenConfigError - resolve() still works (read-only) - get() still works (read-only)
Example
config = Config(schema=MySchema).update("config.yaml") config.freeze() config.set("model::lr", 0.001) # Raises FrozenConfigError
Source code in src/sparkwheel/config.py
get(id='', default=None)
Get raw config value (unresolved).
IMPORTANT: This method ALWAYS returns raw values from the internal _data dict,
even after resolve() has been called. It never uses the resolution cache.
- Returns
@references as strings (e.g., "@model::lr") - Returns
$expressions as strings (e.g., "$@lr * 2") - Returns
%raw references already expanded (eager expansion during update()) - Fast, no resolution overhead
Use this when you need to: - Inspect the raw config structure - Check what references exist - Access config before resolution - Avoid triggering expensive instantiation
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id
|
str
|
Configuration path (use :: for nesting, e.g., "model::lr") Empty string returns entire config |
''
|
default
|
Any
|
Default value if id not found |
None
|
Returns:
| Type | Description |
|---|---|
Any
|
Raw configuration value from _data (@ and $ unresolved, % already expanded) |
Examples:
>>> # Basic usage
>>> config = Config()
>>> config.update({"lr": 0.001, "ref": "@lr"})
>>> config.get("lr")
0.001
>>> config.get("ref")
"@lr" # Raw @ reference string
>>> # get() vs resolve() comparison
>>> config = Config()
>>> config.update({
... "lr": 0.001,
... "doubled": "$@lr * 2",
... "ref": "@lr"
... })
>>> config.get("doubled")
"$@lr * 2" # Raw expression string
>>> config.resolve("doubled")
0.002 # Evaluated result
>>> config.get("doubled") # Still raw after resolve()!
"$@lr * 2"
Source code in src/sparkwheel/config.py
is_frozen()
resolve(id='', instantiate=True, eval_expr=True, lazy=True, default=None)
Resolve references, evaluate expressions, and instantiate components.
This is the main method for getting fully resolved config values. It:
1. Follows @ references to their target values
2. Evaluates $ expressions using Python eval()
3. Instantiates components with _target_ keys
4. Caches results in a separate resolution cache (_resolver._resolved)
Unlike get(), which always returns raw _data, resolve() performs full processing
and uses a separate cache for efficiency.
Processing stages:
- % raw references: Already expanded during update() (eager)
- @ resolved references: Resolved now (lazy, supports circular deps)
- $ expressions: Evaluated now (lazy)
- _target_ components: Instantiated now (lazy)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id
|
str
|
Config path to resolve (empty string for entire config) |
''
|
instantiate
|
bool
|
Whether to instantiate components with target (default: True) |
True
|
eval_expr
|
bool
|
Whether to evaluate $ expressions (default: True) |
True
|
lazy
|
bool
|
Whether to use cached resolution (default: True) |
True
|
default
|
Any
|
Default value if id not found (returns default.get_config() if Item) |
None
|
Returns:
| Type | Description |
|---|---|
Any
|
Resolved value (could be primitive, object, or complex structure) |
Examples:
>>> # Basic reference resolution
>>> config = Config()
>>> config.update({
... "lr": 0.001,
... "ref": "@lr"
... })
>>> config.get("ref")
"@lr" # Raw string
>>> config.resolve("ref")
0.001 # Followed reference
>>> # Expression evaluation
>>> config = Config()
>>> config.update({
... "lr": 0.001,
... "doubled": "$@lr * 2"
... })
>>> config.resolve("doubled")
0.002
>>> # Component instantiation
>>> config = Config()
>>> config.update({
... "optimizer": {
... "_target_": "torch.optim.Adam",
... "lr": 0.001
... }
... })
>>> optimizer = config.resolve("optimizer")
>>> type(optimizer).__name__
'Adam'
>>> # Disable instantiation (useful for inspection)
>>> config.resolve("optimizer", instantiate=False)
{'_target_': 'torch.optim.Adam', 'lr': 0.001}
Source code in src/sparkwheel/config.py
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 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 | |
set(id, value)
Set config value, creating paths as needed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id
|
str
|
Configuration path (use :: for nesting) |
required |
value
|
Any
|
Value to set |
required |
Raises:
| Type | Description |
|---|---|
FrozenConfigError
|
If config is frozen |
Example
config = Config() config.set("model::lr", 0.001) config.get("model::lr") 0.001
Source code in src/sparkwheel/config.py
unfreeze()
update(source)
Update configuration with changes from another source.
Auto-detects strings as either file paths or CLI overrides: - Strings with '=' are parsed as overrides (e.g., "key=value", "=key=value", "~key") - Strings without '=' are treated as file paths - Dicts and Config instances work as before
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source
|
PathLike | dict[str, Any] | Config | str
|
File path, override string, dict, or Config instance to update from |
required |
Returns:
| Type | Description |
|---|---|
Config
|
self (for chaining) |
Operators
- key=value - Compose (default): merge dict or extend list
- =key=value - Replace operator: completely replace value
- ~key - Remove operator: delete key (errors if missing)
Examples:
>>> # Chain multiple updates (mixed files and overrides)
>>> config = (Config(schema=MySchema)
... .update("base.yaml")
... .update("exp.yaml")
... .update("optimizer::lr=0.01")
... .update("=model={'_target_': 'MyModel'}")
... .update("~debug"))
>>> # Update from another Config instance
>>> config1 = Config()
>>> config2 = Config().update({"model::lr": 0.001})
>>> config1.update(config2)
Source code in src/sparkwheel/config.py
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 | |
validate(schema)
Validate configuration against a dataclass schema.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
schema
|
type
|
Dataclass type defining the expected structure and types |
required |
Raises:
| Type | Description |
|---|---|
ValidationError
|
If configuration doesn't match schema |
TypeError
|
If schema is not a dataclass |
Example
from dataclasses import dataclass @dataclass ... class ModelConfig: ... hidden_size: int ... dropout: float config = Config().update({"hidden_size": 512, "dropout": 0.1}) config.validate(ModelConfig) # Passes bad_config = Config().update({"hidden_size": "not an int"}) bad_config.validate(ModelConfig) # Raises ValidationError
Source code in src/sparkwheel/config.py
parse_overrides(args)
Parse CLI argument overrides with automatic type inference.
Supports only key=value syntax with operator prefixes.
Values are parsed using YAML syntax (via yaml.safe_load), ensuring
CLI overrides behave identically to values in YAML config files.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
args
|
list[str]
|
List of argument strings to parse (e.g., from argparse) |
required |
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
Dictionary of parsed key-value pairs with inferred types. |
dict[str, Any]
|
Keys may have operator prefixes (=key for replace, ~key for delete). |
Operators
- key=value - Normal assignment (composes/merges)
- =key=value - Replace operator (completely replaces key)
- ~key - Delete operator (removes key)
Examples:
>>> # Basic overrides (compose/merge)
>>> parse_overrides(["model::lr=0.001", "debug=true"])
{"model::lr": 0.001, "debug": True}
>>> # With operators
>>> parse_overrides(["=model={_target_: ResNet}", "~old_param"])
{"=model": {'_target_': 'ResNet'}, "~old_param": None}
>>> # Nested paths with operators
>>> parse_overrides(["=optimizer::lr=0.01", "~model::old_param"])
{"=optimizer::lr": 0.01, "~model::old_param": None}
Note
- The '=' character serves dual purpose:
- In 'key=value' → assignment operator (CLI syntax)
- In '=key=value' → replace operator prefix (config operator)
- Values use YAML syntax:
true/false,yes/no,on/offfor booleans,nullor~for None,{key: value}for dicts. - Python's
Noneis parsed as the string"None"(usenullinstead).