Pydantic Settings
BaseSettings ¶
BaseSettings(
__pydantic_self__,
_case_sensitive: bool | None = None,
_env_prefix: str | None = None,
_env_file: DotenvType | None = ENV_FILE_SENTINEL,
_env_file_encoding: str | None = None,
_env_ignore_empty: bool | None = None,
_env_nested_delimiter: str | None = None,
_env_parse_none_str: str | None = None,
_env_parse_enums: bool | None = None,
_cli_prog_name: str | None = None,
_cli_parse_args: (
bool | list[str] | tuple[str, ...] | None
) = None,
_cli_settings_source: (
CliSettingsSource[Any] | None
) = None,
_cli_parse_none_str: str | None = None,
_cli_hide_none_type: bool | None = None,
_cli_avoid_json: bool | None = None,
_cli_enforce_required: bool | None = None,
_cli_use_class_docs_for_groups: bool | None = None,
_cli_prefix: str | None = None,
_secrets_dir: str | Path | None = None,
**values: Any
)
Bases: BaseModel
Base class for settings, allowing values to be overridden by environment variables.
This is useful in production for secrets you do not wish to save in code, it plays nicely with docker(-compose), Heroku and any 12 factor app design.
All the below attributes can be set via model_config
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
_case_sensitive |
bool | None
|
Whether environment variables names should be read with case-sensitivity. Defaults to |
None
|
_env_prefix |
str | None
|
Prefix for all environment variables. Defaults to |
None
|
_env_file |
DotenvType | None
|
The env file(s) to load settings values from. Defaults to |
ENV_FILE_SENTINEL
|
_env_file_encoding |
str | None
|
The env file encoding, e.g. |
None
|
_env_ignore_empty |
bool | None
|
Ignore environment variables where the value is an empty string. Default to |
None
|
_env_nested_delimiter |
str | None
|
The nested env values delimiter. Defaults to |
None
|
_env_parse_none_str |
str | None
|
The env string value that should be parsed (e.g. "null", "void", "None", etc.)
into |
None
|
_env_parse_enums |
bool | None
|
Parse enum field names to values. Defaults to |
None
|
_cli_prog_name |
str | None
|
The CLI program name to display in help text. Defaults to |
None
|
_cli_parse_args |
bool | list[str] | tuple[str, ...] | None
|
The list of CLI arguments to parse. Defaults to None.
If set to |
None
|
_cli_settings_source |
CliSettingsSource[Any] | None
|
Override the default CLI settings source with a user defined instance. Defaults to None. |
None
|
_cli_parse_none_str |
str | None
|
The CLI string value that should be parsed (e.g. "null", "void", "None", etc.) into
|
None
|
_cli_hide_none_type |
bool | None
|
Hide |
None
|
_cli_avoid_json |
bool | None
|
Avoid complex JSON objects in CLI help text. Defaults to |
None
|
_cli_enforce_required |
bool | None
|
Enforce required fields at the CLI. Defaults to |
None
|
_cli_use_class_docs_for_groups |
bool | None
|
Use class docstrings in CLI group help text instead of field descriptions.
Defaults to |
None
|
_cli_prefix |
str | None
|
The root parser command line arguments prefix. Defaults to "". |
None
|
_secrets_dir |
str | Path | None
|
The secret files directory. Defaults to |
None
|
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/main.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 153 154 155 156 157 158 159 160 161 162 |
|
settings_customise_sources
classmethod
¶
settings_customise_sources(
settings_cls: type[BaseSettings],
init_settings: PydanticBaseSettingsSource,
env_settings: PydanticBaseSettingsSource,
dotenv_settings: PydanticBaseSettingsSource,
file_secret_settings: PydanticBaseSettingsSource,
) -> tuple[PydanticBaseSettingsSource, ...]
Define the sources and their order for loading the settings values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
settings_cls |
type[BaseSettings]
|
The Settings class. |
required |
init_settings |
PydanticBaseSettingsSource
|
The |
required |
env_settings |
PydanticBaseSettingsSource
|
The |
required |
dotenv_settings |
PydanticBaseSettingsSource
|
The |
required |
file_secret_settings |
PydanticBaseSettingsSource
|
The |
required |
Returns:
Type | Description |
---|---|
tuple[PydanticBaseSettingsSource, ...]
|
A tuple containing the sources and their order for loading the settings values. |
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/main.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
|
SettingsConfigDict ¶
Bases: ConfigDict
pyproject_toml_depth
instance-attribute
¶
pyproject_toml_depth: int
Number of levels up from the current working directory to attempt to find a pyproject.toml file.
This is only used when a pyproject.toml file is not found in the current working directory.
pyproject_toml_table_header
instance-attribute
¶
Header of the TOML table within a pyproject.toml file to use when filling variables.
This is supplied as a tuple[str, ...]
instead of a str
to accommodate for headers
containing a .
.
For example, toml_table_header = ("tool", "my.tool", "foo")
can be used to fill variable
values from a table with header [tool."my.tool".foo]
.
To use the root table, exclude this config setting or provide an empty tuple.
CliSettingsSource ¶
CliSettingsSource(
settings_cls: type[BaseSettings],
cli_prog_name: str | None = None,
cli_parse_args: (
bool | list[str] | tuple[str, ...] | None
) = None,
cli_parse_none_str: str | None = None,
cli_hide_none_type: bool | None = None,
cli_avoid_json: bool | None = None,
cli_enforce_required: bool | None = None,
cli_use_class_docs_for_groups: bool | None = None,
cli_prefix: str | None = None,
case_sensitive: bool | None = True,
root_parser: Any = None,
parse_args_method: (
Callable[..., Any] | None
) = ArgumentParser.parse_args,
add_argument_method: (
Callable[..., Any] | None
) = ArgumentParser.add_argument,
add_argument_group_method: (
Callable[..., Any] | None
) = ArgumentParser.add_argument_group,
add_parser_method: (
Callable[..., Any] | None
) = _SubParsersAction.add_parser,
add_subparsers_method: (
Callable[..., Any] | None
) = ArgumentParser.add_subparsers,
formatter_class: Any = HelpFormatter,
)
Bases: EnvSettingsSource
, Generic[T]
Source class for loading settings values from CLI.
Note
A CliSettingsSource
connects with a root_parser
object by using the parser methods to add
settings_cls
fields as command line arguments. The CliSettingsSource
internal parser representation
is based upon the argparse
parsing library, and therefore, requires the parser methods to support
the same attributes as their argparse
library counterparts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cli_prog_name |
str | None
|
The CLI program name to display in help text. Defaults to |
None
|
cli_parse_args |
bool | list[str] | tuple[str, ...] | None
|
The list of CLI arguments to parse. Defaults to None.
If set to |
None
|
cli_parse_none_str |
str | None
|
The CLI string value that should be parsed (e.g. "null", "void", "None", etc.) into |
None
|
cli_hide_none_type |
bool | None
|
Hide |
None
|
cli_avoid_json |
bool | None
|
Avoid complex JSON objects in CLI help text. Defaults to |
None
|
cli_enforce_required |
bool | None
|
Enforce required fields at the CLI. Defaults to |
None
|
cli_use_class_docs_for_groups |
bool | None
|
Use class docstrings in CLI group help text instead of field descriptions.
Defaults to |
None
|
cli_prefix |
str | None
|
Prefix for command line arguments added under the root parser. Defaults to "". |
None
|
case_sensitive |
bool | None
|
Whether CLI "--arg" names should be read with case-sensitivity. Defaults to |
True
|
root_parser |
Any
|
The root parser object. |
None
|
parse_args_method |
Callable[..., Any] | None
|
The root parser parse args method. Defaults to |
parse_args
|
add_argument_method |
Callable[..., Any] | None
|
The root parser add argument method. Defaults to |
add_argument
|
add_argument_group_method |
Callable[..., Any] | None
|
The root parser add argument group method.
Defaults to |
add_argument_group
|
add_parser_method |
Callable[..., Any] | None
|
The root parser add new parser (sub-command) method.
Defaults to |
add_parser
|
add_subparsers_method |
Callable[..., Any] | None
|
The root parser add subparsers (sub-commands) method.
Defaults to |
add_subparsers
|
formatter_class |
Any
|
A class for customizing the root parser help text. Defaults to |
HelpFormatter
|
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
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 881 882 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 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 |
|
DotEnvSettingsSource ¶
DotEnvSettingsSource(
settings_cls: type[BaseSettings],
env_file: DotenvType | None = ENV_FILE_SENTINEL,
env_file_encoding: str | None = None,
case_sensitive: bool | None = None,
env_prefix: str | None = None,
env_nested_delimiter: str | None = None,
env_ignore_empty: bool | None = None,
env_parse_none_str: str | None = None,
env_parse_enums: bool | None = None,
)
Bases: EnvSettingsSource
Source class for loading settings values from env files.
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
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 |
|
EnvSettingsSource ¶
EnvSettingsSource(
settings_cls: type[BaseSettings],
case_sensitive: bool | None = None,
env_prefix: str | None = None,
env_nested_delimiter: str | None = None,
env_ignore_empty: bool | None = None,
env_parse_none_str: str | None = None,
env_parse_enums: bool | None = None,
)
Bases: PydanticBaseEnvSettingsSource
Source class for loading settings values from environment variables.
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 |
|
get_field_value ¶
Gets the value for field from environment variables and a flag to determine whether value is complex.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field |
FieldInfo
|
The field. |
required |
field_name |
str
|
The field name. |
required |
Returns:
Type | Description |
---|---|
tuple[Any, str, bool]
|
A tuple contains the key, value if the file exists otherwise |
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 |
|
prepare_field_value ¶
prepare_field_value(
field_name: str,
field: FieldInfo,
value: Any,
value_is_complex: bool,
) -> Any
Prepare value for the field.
- Extract value for nested field.
- Deserialize value to python object for complex field.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field |
FieldInfo
|
The field. |
required |
field_name |
str
|
The field name. |
required |
Returns:
Type | Description |
---|---|
Any
|
A tuple contains prepared value for the field. |
Raises:
Type | Description |
---|---|
ValuesError
|
When There is an error in deserializing value for complex field. |
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.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 575 576 577 578 579 580 581 582 583 584 585 |
|
next_field
staticmethod
¶
next_field(
field: FieldInfo | Any | None,
key: str,
case_sensitive: bool | None = None,
) -> FieldInfo | None
Find the field in a sub model by key(env name)
By having the following models:
```py
class SubSubModel(BaseSettings):
dvals: Dict
class SubModel(BaseSettings):
vals: list[str]
sub_sub_model: SubSubModel
class Cfg(BaseSettings):
sub_model: SubModel
```
Then
next_field(sub_model, 'vals') Returns the vals
field of SubModel
class
next_field(sub_model, 'sub_sub_model') Returns sub_sub_model
field of SubModel
class
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field |
FieldInfo | Any | None
|
The field. |
required |
key |
str
|
The key (env name). |
required |
case_sensitive |
bool | None
|
Whether to search for key case sensitively. |
None
|
Returns:
Type | Description |
---|---|
FieldInfo | None
|
Field if it finds the next field otherwise |
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
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 |
|
explode_env_vars ¶
explode_env_vars(
field_name: str,
field: FieldInfo,
env_vars: Mapping[str, str | None],
) -> dict[str, Any]
Process env_vars and extract the values of keys containing env_nested_delimiter into nested dictionaries.
This is applied to a single field, hence filtering by env_var prefix.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field_name |
str
|
The field name. |
required |
field |
FieldInfo
|
The field. |
required |
env_vars |
Mapping[str, str | None]
|
Environment variables. |
required |
Returns:
Type | Description |
---|---|
dict[str, Any]
|
A dictionary contains extracted values from nested env values. |
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
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 |
|
InitSettingsSource ¶
InitSettingsSource(
settings_cls: type[BaseSettings],
init_kwargs: dict[str, Any],
)
Bases: PydanticBaseSettingsSource
Source class for loading values provided during settings class initialization.
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
199 200 201 |
|
JsonConfigSettingsSource ¶
JsonConfigSettingsSource(
settings_cls: type[BaseSettings],
json_file: PathType | None = DEFAULT_PATH,
json_file_encoding: str | None = None,
)
Bases: InitSettingsSource
, ConfigFileSourceMixin
A source class that loads variables from a JSON file
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 |
|
PydanticBaseSettingsSource ¶
PydanticBaseSettingsSource(
settings_cls: type[BaseSettings],
)
Bases: ABC
Abstract base class for settings sources, every settings source classes should inherit from it.
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
126 127 128 |
|
get_field_value
abstractmethod
¶
Gets the value, the key for model creation, and a flag to determine whether value is complex.
This is an abstract method that should be overridden in every settings source classes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field |
FieldInfo
|
The field. |
required |
field_name |
str
|
The field name. |
required |
Returns:
Type | Description |
---|---|
tuple[Any, str, bool]
|
A tuple contains the key, value and a flag to determine whether value is complex. |
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
|
field_is_complex ¶
Checks whether a field is complex, in which case it will attempt to be parsed as JSON.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field |
FieldInfo
|
The field. |
required |
Returns:
Type | Description |
---|---|
bool
|
Whether the field is complex. |
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
146 147 148 149 150 151 152 153 154 155 156 |
|
prepare_field_value ¶
prepare_field_value(
field_name: str,
field: FieldInfo,
value: Any,
value_is_complex: bool,
) -> Any
Prepares the value of a field.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field_name |
str
|
The field name. |
required |
field |
FieldInfo
|
The field. |
required |
value |
Any
|
The value of the field that has to be prepared. |
required |
value_is_complex |
bool
|
A flag to determine whether value is complex. |
required |
Returns:
Type | Description |
---|---|
Any
|
The prepared value. |
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
|
decode_complex_value ¶
Decode the value for a complex field
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field_name |
str
|
The field name. |
required |
field |
FieldInfo
|
The field. |
required |
value |
Any
|
The value of the field that has to be prepared. |
required |
Returns:
Type | Description |
---|---|
Any
|
The decoded value for further preparation |
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
175 176 177 178 179 180 181 182 183 184 185 186 187 |
|
PyprojectTomlConfigSettingsSource ¶
PyprojectTomlConfigSettingsSource(
settings_cls: type[BaseSettings],
toml_file: Path | None = None,
)
Bases: TomlConfigSettingsSource
A source class that loads variables from a pyproject.toml
file.
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 |
|
SecretsSettingsSource ¶
SecretsSettingsSource(
settings_cls: type[BaseSettings],
secrets_dir: str | Path | None = None,
case_sensitive: bool | None = None,
env_prefix: str | None = None,
env_ignore_empty: bool | None = None,
env_parse_none_str: str | None = None,
env_parse_enums: bool | None = None,
)
Bases: PydanticBaseEnvSettingsSource
Source class for loading settings values from secret files.
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
404 405 406 407 408 409 410 411 412 413 414 415 416 417 |
|
find_case_path
classmethod
¶
Find a file within path's directory matching filename, optionally ignoring case.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dir_path |
Path
|
Directory path. |
required |
file_name |
str
|
File name. |
required |
case_sensitive |
bool
|
Whether to search for file name case sensitively. |
required |
Returns:
Type | Description |
---|---|
Path | None
|
Whether file path or |
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 |
|
get_field_value ¶
Gets the value for field from secret file and a flag to determine whether value is complex.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field |
FieldInfo
|
The field. |
required |
field_name |
str
|
The field name. |
required |
Returns:
Type | Description |
---|---|
tuple[Any, str, bool]
|
A tuple contains the key, value if the file exists otherwise |
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
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 |
|
TomlConfigSettingsSource ¶
TomlConfigSettingsSource(
settings_cls: type[BaseSettings],
toml_file: PathType | None = DEFAULT_PATH,
)
Bases: InitSettingsSource
, ConfigFileSourceMixin
A source class that loads variables from a TOML file
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
1593 1594 1595 1596 1597 1598 1599 1600 |
|
YamlConfigSettingsSource ¶
YamlConfigSettingsSource(
settings_cls: type[BaseSettings],
yaml_file: PathType | None = DEFAULT_PATH,
yaml_file_encoding: str | None = None,
)
Bases: InitSettingsSource
, ConfigFileSourceMixin
A source class that loads variables from a yaml file
Source code in .venv/lib/python3.10/site-packages/pydantic_settings/sources.py
1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 |
|