Reference
python-configuration module.
DotEnvConfiguration
Bases: FileConfiguration
Configuration from a .env type file input.
Source code in src/config/__init__.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 |
|
__init__(data, read_from_file=False, prefix='', separator='__', *, strip_prefix=True, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Class Constructor.
Source code in src/config/__init__.py
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 |
|
EnvConfiguration
Bases: Configuration
Configuration from Environment variables.
Source code in src/config/__init__.py
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 |
|
__init__(prefix='', separator='__', *, strip_prefix=True, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD)
Class Constructor.
prefix: prefix to filter environment variables with separator: separator to replace by dots strip_prefix: whether to include the prefix lowercase_keys: whether to convert every key to lower case.
Source code in src/config/__init__.py
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 |
|
reload()
Reload the environment values.
Source code in src/config/__init__.py
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
|
FileConfiguration
Bases: Configuration
Configuration from a file input.
Source code in src/config/__init__.py
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 |
|
__init__(data, read_from_file=False, *, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Class Constructor.
data: path to a config file, or its contents
read_from_file: whether to read from a file path or to interpret
the data
as the contents of the file.
lowercase_keys: whether to convert every key to lower case.
Source code in src/config/__init__.py
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 |
|
reload()
Reload the configuration.
Source code in src/config/__init__.py
423 424 425 426 |
|
INIConfiguration
Bases: FileConfiguration
Configuration from an INI file input.
Source code in src/config/__init__.py
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 |
|
__init__(data, read_from_file=False, *, section_prefix='', strip_prefix=True, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Class Constructor.
Source code in src/config/__init__.py
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 |
|
JSONConfiguration
Bases: FileConfiguration
Configuration from a JSON input.
Source code in src/config/__init__.py
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 |
|
PathConfiguration
Bases: Configuration
Configuration from a filesytem path.
Source code in src/config/__init__.py
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 |
|
__init__(path, remove_level=1, *, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Class Constructor.
path: path to read from remove_level: how many levels to remove from the resulting config lowercase_keys: whether to convert every key to lower case.
Source code in src/config/__init__.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 |
|
reload()
Reload the path.
Source code in src/config/__init__.py
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 |
|
PythonConfiguration
Bases: Configuration
Configuration from a python module.
Source code in src/config/__init__.py
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 |
|
__init__(module, prefix='', separator='_', *, strip_prefix=True, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Class Constructor.
module: a module or path string prefix: prefix to use to filter object names separator: separator to replace by dots lowercase_keys: whether to convert every key to lower case.
Source code in src/config/__init__.py
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 |
|
reload()
Reload the path.
Source code in src/config/__init__.py
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 |
|
TOMLConfiguration
Bases: FileConfiguration
Configuration from a TOML input.
Source code in src/config/__init__.py
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 |
|
__init__(data, read_from_file=False, *, section_prefix='', strip_prefix=True, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Class Constructor.
Source code in src/config/__init__.py
917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 |
|
YAMLConfiguration
Bases: FileConfiguration
Configuration from a YAML input.
Source code in src/config/__init__.py
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 |
|
__init__(data, read_from_file=False, *, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Class Constructor.
Source code in src/config/__init__.py
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 |
|
config(*configs, prefix='', strip_prefix=True, separator=None, remove_level=1, lowercase_keys=False, ignore_missing_paths=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD)
Create a ConfigurationSet instance from an iterable of configs.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
configs |
Iterable
|
iterable of configurations |
()
|
prefix |
str
|
prefix to filter environment variables with |
''
|
strip_prefix |
bool
|
whether to strip the prefix |
True
|
remove_level |
int
|
how many levels to remove from the resulting config |
1
|
lowercase_keys |
bool
|
whether to convert every key to lower case. |
False
|
ignore_missing_paths |
bool
|
whether to ignore failures from missing files/folders. |
False
|
separator |
Optional[str]
|
separator for Python modules and environment variables. |
None
|
interpolate |
InterpolateType
|
whether to apply string interpolation when looking for items |
False
|
Note that the separator
parameter impacts Python modules and
environment variables at the same time. To pass different separators to Python
modules and environments, use the longer version
('python', 'path-to-module', prefix, separator)
and ('env', prefix, separator)
.
Source code in src/config/__init__.py
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 |
|
config_from_dict(data, *, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD)
Create a Configuration instance from a dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
Mapping
|
dictionary with string keys. |
required |
lowercase_keys |
bool
|
whether to convert every key to lower case. |
False
|
interpolate |
InterpolateType
|
whether to apply string interpolation when looking for items. |
False
|
Returns:
Type | Description |
---|---|
Configuration
|
a Configuration instance. |
Source code in src/config/__init__.py
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 |
|
config_from_dotenv(data, read_from_file=False, prefix='', separator='__', *, strip_prefix=True, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Create a Configuration instance from a .env type file.
Lines starting with a # are ignored and treated as comments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
Union[str, Path, TextIO]
|
path to a .env type file or contents. |
required |
read_from_file |
bool
|
whether to read from a file path or to interpret.
the |
False
|
lowercase_keys |
bool
|
whether to convert every key to lower case. |
False
|
interpolate |
InterpolateType
|
whether to apply string interpolation when looking for items. |
False
|
ignore_missing_paths |
bool
|
if true it will not throw on missing paths. |
False
|
Returns:
Type | Description |
---|---|
Configuration
|
a Configuration instance. |
Source code in src/config/__init__.py
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 |
|
config_from_env(prefix, separator='__', *, strip_prefix=True, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD)
Create a EnvConfiguration instance from environment variables.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prefix |
str
|
prefix to filter environment variables with. |
required |
separator |
str
|
separator to replace by dots. |
'__'
|
strip_prefix |
bool
|
whether to include the prefix |
True
|
lowercase_keys |
bool
|
whether to convert every key to lower case. |
False
|
interpolate |
InterpolateType
|
whether to apply string interpolation when looking for items. |
False
|
Returns:
Type | Description |
---|---|
Configuration
|
a Configuration instance. |
Source code in src/config/__init__.py
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 |
|
config_from_ini(data, read_from_file=False, *, section_prefix='', strip_prefix=True, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Create a Configuration instance from an INI file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
Union[str, Path, TextIO]
|
path to an INI file or contents. |
required |
read_from_file |
bool
|
whether to read from a file path or to interpret.
the |
False
|
lowercase_keys |
bool
|
whether to convert every key to lower case. |
False
|
interpolate |
InterpolateType
|
whether to apply string interpolation when looking for items. |
False
|
ignore_missing_paths |
bool
|
if true it will not throw on missing paths. |
False
|
Returns:
Type | Description |
---|---|
Configuration
|
a Configuration instance. |
Source code in src/config/__init__.py
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 |
|
config_from_json(data, read_from_file=False, *, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Create a Configuration instance from a JSON file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
Union[str, Path, TextIO]
|
path to a JSON file or contents. |
required |
read_from_file |
bool
|
whether to read from a file path or to interpret.
the |
False
|
lowercase_keys |
bool
|
whether to convert every key to lower case. |
False
|
interpolate |
InterpolateType
|
whether to apply string interpolation when looking for items. |
False
|
ignore_missing_paths |
bool
|
if true it will not throw on missing paths. |
False
|
Returns:
Type | Description |
---|---|
Configuration
|
a Configuration instance. |
Source code in src/config/__init__.py
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 |
|
config_from_path(path, remove_level=1, *, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Create a Configuration instance from filesystem path.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path |
str
|
path to read from. |
required |
remove_level |
int
|
how many levels to remove from the resulting config. |
1
|
lowercase_keys |
bool
|
whether to convert every key to lower case. |
False
|
interpolate |
InterpolateType
|
whether to apply string interpolation when looking for items. |
False
|
Returns:
Type | Description |
---|---|
Configuration
|
a Configuration instance. |
Source code in src/config/__init__.py
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 |
|
config_from_python(module, prefix='', separator='_', *, strip_prefix=True, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Create a Configuration instance from the objects in a Python module.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
module |
Union[str, Path, ModuleType]
|
a module or path string. |
required |
prefix |
str
|
prefix to use to filter object names. |
''
|
separator |
str
|
separator to replace by dots. |
'_'
|
lowercase_keys |
bool
|
whether to convert every key to lower case. |
False
|
interpolate |
InterpolateType
|
whether to apply string interpolation when looking for items. |
False
|
Returns:
Type | Description |
---|---|
Configuration
|
a Configuration instance. |
Source code in src/config/__init__.py
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 |
|
config_from_toml(data, read_from_file=False, *, section_prefix='', strip_prefix=True, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Return a Configuration instance from TOML files.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
Union[str, Path, TextIO]
|
string or file. |
required |
read_from_file |
bool
|
whether |
False
|
lowercase_keys |
bool
|
whether to convert every key to lower case. |
False
|
interpolate |
InterpolateType
|
whether to apply string interpolation when looking for items. |
False
|
ignore_missing_paths |
bool
|
if true it will not throw on missing paths. |
False
|
Returns:
Type | Description |
---|---|
Configuration
|
a Configuration instance. |
Source code in src/config/__init__.py
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 |
|
config_from_yaml(data, read_from_file=False, *, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD, ignore_missing_paths=False)
Return a Configuration instance from YAML files.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
Union[str, Path, TextIO]
|
string or file. |
required |
read_from_file |
bool
|
whether |
False
|
lowercase_keys |
bool
|
whether to convert every key to lower case. |
False
|
interpolate |
InterpolateType
|
whether to apply string interpolation when looking for items. |
False
|
ignore_missing_paths |
bool
|
if true it will not throw on missing paths. |
False
|
Returns:
Type | Description |
---|---|
Configuration
|
a Configuration instance. |
Source code in src/config/__init__.py
883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 |
|
create_path_from_config(path, cfg, remove_level=1)
Output a path configuration from a Configuration instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path |
str
|
path to create the config files in. |
required |
cfg |
Configuration
|
Configuration instance. |
required |
remove_level |
int
|
how many levels to remove. |
1
|
Source code in src/config/__init__.py
814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 |
|
Configuration class.
Configuration
Configuration class.
The Configuration class takes a dictionary input with keys such as
- ``a1.b1.c1``
- ``a1.b1.c2``
- ``a1.b2.c1``
- ``a1.b2.c2``
- ``a2.b1.c1``
- ``a2.b1.c2``
- ``a2.b2.c1``
- ``a2.b2.c2``
Source code in src/config/configuration.py
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 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 |
|
__delitem__(prefix)
Filter a dictionary and delete the items that are prefixed by prefix
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prefix |
str
|
prefix to filter on to delete keys |
required |
Source code in src/config/configuration.py
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 |
|
__eq__(other)
Equality operator.
Source code in src/config/configuration.py
69 70 71 72 73 |
|
__init__(config_, lowercase_keys=False, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD)
Class Constructor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config_ |
Mapping[str, Any]
|
a mapping of configuration values. Keys need to be strings. |
required |
lowercase_keys |
bool
|
whether to convert every key to lower case. |
False
|
Source code in src/config/configuration.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
|
as_attrdict()
Return the representation as an attribute dictionary.
Source code in src/config/configuration.py
194 195 196 197 198 199 200 201 |
|
as_dict()
Return the representation as a dictionary.
Source code in src/config/configuration.py
190 191 192 |
|
base64decode(item)
Get the item value as a Base64 decoded bytes instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item |
str
|
key |
required |
Source code in src/config/configuration.py
262 263 264 265 266 267 268 269 270 |
|
base64encode(item)
Get the item value as a Base64 encoded bytes instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item |
str
|
key |
required |
Source code in src/config/configuration.py
252 253 254 255 256 257 258 259 260 |
|
clear()
Remove all items.
Source code in src/config/configuration.py
357 358 359 |
|
copy()
Return shallow copy.
Source code in src/config/configuration.py
361 362 363 |
|
dotted_iter()
Context manager for dotted iteration.
This context manager changes all the iterator-related functions to include every nested (dotted) key instead of just the top level.
Source code in src/config/configuration.py
423 424 425 426 427 428 429 430 431 432 433 434 435 |
|
get(key, default=None)
Get the configuration values corresponding to key
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
str
|
key to retrieve. |
required |
default |
Any
|
default value in case the key is missing. |
None
|
Returns:
Type | Description |
---|---|
Union[dict, Any]
|
the value found or a default. |
Source code in src/config/configuration.py
178 179 180 181 182 183 184 185 186 187 188 |
|
get_bool(item)
Get the item value as a bool.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item |
str
|
key |
required |
Source code in src/config/configuration.py
203 204 205 206 207 208 209 |
|
get_dict(item)
Get the item values as a dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item |
str
|
key |
required |
Source code in src/config/configuration.py
244 245 246 247 248 249 250 |
|
get_float(item)
Get the item value as a float.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item |
str
|
key |
required |
Source code in src/config/configuration.py
228 229 230 231 232 233 234 |
|
get_int(item)
Get the item value as an int.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item |
str
|
key |
required |
Source code in src/config/configuration.py
220 221 222 223 224 225 226 |
|
get_list(item)
Get the item value as a list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item |
str
|
key |
required |
Source code in src/config/configuration.py
236 237 238 239 240 241 242 |
|
get_str(item, fmt='{}')
Get the item value as an int.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item |
str
|
key |
required |
fmt |
str
|
format to use |
'{}'
|
Source code in src/config/configuration.py
211 212 213 214 215 216 217 218 |
|
items(levels=None)
Return a set-like object providing a view on the configuration items.
Source code in src/config/configuration.py
304 305 306 307 308 309 310 311 312 313 314 315 |
|
keys(levels=None)
Return a set-like object providing a view on the configuration keys.
Source code in src/config/configuration.py
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 |
|
pop(prefix, value=None)
Remove keys with the specified prefix and return the corresponding value.
If the prefix is not found a KeyError is raised.
Source code in src/config/configuration.py
365 366 367 368 369 370 371 372 373 374 375 376 |
|
reload()
Reload the configuration.
This method is not implemented for simple Configuration objects and is intended only to be used in subclasses.
Source code in src/config/configuration.py
393 394 395 396 397 398 399 |
|
setdefault(key, default=None)
Insert key with a value of default if key is not in the Configuration.
Return the value for key if key is in the Configuration, else default.
Source code in src/config/configuration.py
378 379 380 381 382 383 384 385 386 387 |
|
update(other)
Update the Configuration with another Configuration object or Mapping.
Source code in src/config/configuration.py
389 390 391 |
|
validate(schema, raise_on_error=False, nested=False, **kwargs)
Validate the current config using JSONSchema.
Source code in src/config/configuration.py
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 |
|
values(levels=None)
Return a set-like object providing a view on the configuration values.
Source code in src/config/configuration.py
292 293 294 295 296 297 298 299 300 301 302 |
|
ConfigurationSet class.
ConfigurationSet
Bases: Configuration
Configuration Sets.
A class that combines multiple Configuration instances in a hierarchical manner.
Source code in src/config/configuration_set.py
20 21 22 23 24 25 26 27 28 29 30 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 |
|
configs: List[Configuration]
property
writable
List of underlying configuration objects.
__init__(*configs, interpolate=False, interpolate_type=InterpolateEnumType.STANDARD)
Class Constructor.
Source code in src/config/configuration_set.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
|
as_dict()
Return the representation as a dictionary.
Source code in src/config/configuration_set.py
129 130 131 132 133 134 |
|
clear()
Remove all items.
Source code in src/config/configuration_set.py
191 192 193 194 |
|
copy()
Return shallow copy.
Source code in src/config/configuration_set.py
196 197 198 |
|
get(key, default=None)
Get the configuration values corresponding to key
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
str
|
key to retrieve. |
required |
default |
Any
|
default value in case the key is missing. |
None
|
Returns:
Type | Description |
---|---|
Union[dict, Any]
|
the value found or a default |
Source code in src/config/configuration_set.py
114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
|
get_dict(item)
Get the item values as a dictionary.
item: key
Source code in src/config/configuration_set.py
136 137 138 139 140 141 |
|
items(levels=None)
Return a set-like object providing a view on the configuration items.
Source code in src/config/configuration_set.py
163 164 165 166 167 168 169 170 171 |
|
keys(levels=None)
Return a set-like object providing a view on the configuration keys.
Source code in src/config/configuration_set.py
143 144 145 146 147 148 149 150 151 |
|
reload()
Reload the underlying configuration instances.
Source code in src/config/configuration_set.py
205 206 207 208 209 |
|
update(other)
Update the ConfigurationSet with another Configuration object or Mapping.
Source code in src/config/configuration_set.py
200 201 202 203 |
|
values(levels=None)
Return a set-like object providing a view on the configuration values.
Source code in src/config/configuration_set.py
153 154 155 156 157 158 159 160 161 |
|