Pydantic Settings
SettingsError ¶
Bases: ValueError
Base exception for settings-related errors.
BaseSettings ¶
BaseSettings(__pydantic_self__, _case_sensitive: bool | None = None, _nested_model_default_partial_update: 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_nested_max_split: int | 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_exit_on_error: bool | None = None, _cli_prefix: str | None = None, _cli_flag_prefix_char: str | None = None, _cli_implicit_flags: bool | None = None, _cli_ignore_unknown_args: bool | None = None, _cli_kebab_case: bool | None = None, _cli_shortcuts: Mapping[str, str | list[str]] | None = None, _secrets_dir: PathType | 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.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
_case_sensitive
|
bool | None
|
Whether environment and CLI variable names should be read with case-sensitivity.
Defaults to |
None
|
_nested_model_default_partial_update
|
bool | None
|
Whether to allow partial updates on nested model default object fields.
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_nested_max_split
|
int | None
|
The nested env values maximum nesting. 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_exit_on_error
|
bool | None
|
Determines whether or not the internal parser exits with error info when an error occurs.
Defaults to |
None
|
_cli_prefix
|
str | None
|
The root parser command line arguments prefix. Defaults to "". |
None
|
_cli_flag_prefix_char
|
str | None
|
The flag prefix character to use for CLI optional arguments. Defaults to '-'. |
None
|
_cli_implicit_flags
|
bool | None
|
Whether |
None
|
_cli_ignore_unknown_args
|
bool | None
|
Whether to ignore unknown CLI args and parse only known ones. Defaults to |
None
|
_cli_kebab_case
|
bool | None
|
CLI args use kebab case. Defaults to |
None
|
_cli_shortcuts
|
Mapping[str, str | list[str]] | None
|
Mapping of target field name to alias names. Defaults to |
None
|
_secrets_dir
|
PathType | None
|
The secret files directory or a sequence of directories. Defaults to |
None
|
Source code in pydantic_settings/main.py
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 | |
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.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
settings_cls
|
type[BaseSettings]
|
The Settings class. |
必需 |
init_settings
|
PydanticBaseSettingsSource
|
The |
必需 |
env_settings
|
PydanticBaseSettingsSource
|
The |
必需 |
dotenv_settings
|
PydanticBaseSettingsSource
|
The |
必需 |
file_secret_settings
|
PydanticBaseSettingsSource
|
The |
必需 |
返回:
| 类型 | 描述 |
|---|---|
tuple[PydanticBaseSettingsSource, ...]
|
A tuple containing the sources and their order for loading the settings values. |
源代码位于: pydantic_settings/main.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | |
CliApp ¶
A utility class for running Pydantic BaseSettings, BaseModel, or pydantic.dataclasses.dataclass as
CLI applications.
run
staticmethod
¶
run(model_cls: type[T], cli_args: list[str] | Namespace | SimpleNamespace | dict[str, Any] | None = None, cli_settings_source: CliSettingsSource[Any] | None = None, cli_exit_on_error: bool | None = None, cli_cmd_method_name: str = 'cli_cmd', **model_init_data: Any) -> T
Runs a Pydantic BaseSettings, BaseModel, or pydantic.dataclasses.dataclass as a CLI application.
Running a model as a CLI application requires the cli_cmd method to be defined in the model class.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
model_cls
|
type[T]
|
The model class to run as a CLI application. |
必需 |
cli_args
|
list[str] | Namespace | SimpleNamespace | dict[str, Any] | None
|
The list of CLI arguments to parse. If |
None
|
cli_settings_source
|
CliSettingsSource[Any] | None
|
Override the default CLI settings source with a user defined instance.
Defaults to |
None
|
cli_exit_on_error
|
bool | None
|
Determines whether this function exits on error. If model is subclass of
|
None
|
cli_cmd_method_name
|
str
|
The CLI command method name to run. Defaults to "cli_cmd". |
'cli_cmd'
|
model_init_data
|
Any
|
The model init data. |
{}
|
返回:
| 类型 | 描述 |
|---|---|
T
|
The ran instance of model. |
引发:
| 类型 | 描述 |
|---|---|
SettingsError
|
If model_cls is not subclass of |
SettingsError
|
If model_cls does not have a |
源代码位于: pydantic_settings/main.py
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 | |
run_subcommand
staticmethod
¶
run_subcommand(model: PydanticModel, cli_exit_on_error: bool | None = None, cli_cmd_method_name: str = 'cli_cmd') -> PydanticModel
Runs the model subcommand. Running a model subcommand requires the cli_cmd method to be defined in
the nested model subcommand class.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
model
|
PydanticModel
|
The model to run the subcommand from. |
必需 |
cli_exit_on_error
|
bool | None
|
Determines whether this function exits with error if no subcommand is found.
Defaults to model_config |
None
|
cli_cmd_method_name
|
str
|
The CLI command method name to run. Defaults to "cli_cmd". |
'cli_cmd'
|
返回:
| 类型 | 描述 |
|---|---|
PydanticModel
|
The ran subcommand model. |
引发:
| 类型 | 描述 |
|---|---|
SystemExit
|
When no subcommand is found and cli_exit_on_error= |
SettingsError
|
When no subcommand is found and cli_exit_on_error= |
源代码位于: pydantic_settings/main.py
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 | |
serialize
staticmethod
¶
Serializes the CLI arguments for a Pydantic data model.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
model
|
PydanticModel
|
The data model to serialize. |
必需 |
返回:
| 类型 | 描述 |
|---|---|
list[str]
|
The serialized CLI arguments for the data model. |
源代码位于: pydantic_settings/main.py
673 674 675 676 677 678 679 680 681 682 683 684 685 686 | |
SettingsConfigDict ¶
Bases: ConfigDict
yaml_config_section
instance-attribute
¶
yaml_config_section: str | None
Specifies the top-level key in a YAML file from which to load the settings. If provided, the settings will be loaded from the nested section under this key. This is useful when the YAML file contains multiple configuration sections and you only want to load a specific subset into your settings model.
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_exit_on_error: bool | None = None, cli_prefix: str | None = None, cli_flag_prefix_char: str | None = None, cli_implicit_flags: bool | None = None, cli_ignore_unknown_args: bool | None = None, cli_kebab_case: bool | None = None, cli_shortcuts: Mapping[str, str | list[str]] | None = None, case_sensitive: bool | None = True, root_parser: Any = None, parse_args_method: Callable[..., Any] | None = None, add_argument_method: Callable[..., Any] | None = add_argument, add_argument_group_method: Callable[..., Any] | None = add_argument_group, add_parser_method: Callable[..., Any] | None = add_parser, add_subparsers_method: Callable[..., Any] | None = add_subparsers, formatter_class: Any = RawDescriptionHelpFormatter)
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.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
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_exit_on_error
|
bool | None
|
Determines whether or not the internal parser exits with error info when an error occurs.
Defaults to |
None
|
cli_prefix
|
str | None
|
Prefix for command line arguments added under the root parser. Defaults to "". |
None
|
cli_flag_prefix_char
|
str | None
|
The flag prefix character to use for CLI optional arguments. Defaults to '-'. |
None
|
cli_implicit_flags
|
bool | None
|
Whether |
None
|
cli_ignore_unknown_args
|
bool | None
|
Whether to ignore unknown CLI args and parse only known ones. Defaults to |
None
|
cli_kebab_case
|
bool | None
|
CLI args use kebab case. Defaults to |
None
|
cli_shortcuts
|
Mapping[str, str | list[str]] | None
|
Mapping of target field name to alias names. 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 |
None
|
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 |
RawDescriptionHelpFormatter
|
Source code in pydantic_settings/sources/providers/cli.py
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 | |
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_nested_max_split: int | 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 pydantic_settings/sources/providers/dotenv.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 | |
EnvSettingsSource ¶
EnvSettingsSource(settings_cls: type[BaseSettings], case_sensitive: bool | None = None, env_prefix: str | None = None, env_nested_delimiter: str | None = None, env_nested_max_split: int | 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 pydantic_settings/sources/providers/env.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 | |
get_field_value ¶
Gets the value for field from environment variables and a flag to determine whether value is complex.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
field
|
FieldInfo
|
The field. |
必需 |
field_name
|
str
|
The field name. |
必需 |
返回:
| 类型 | 描述 |
|---|---|
tuple[Any, str, bool]
|
A tuple that contains the value ( |
源代码位于: pydantic_settings/sources/providers/env.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | |
prepare_field_value ¶
Prepare value for the field.
- Extract value for nested field.
- Deserialize value to python object for complex field.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
field
|
FieldInfo
|
The field. |
必需 |
field_name
|
str
|
The field name. |
必需 |
返回:
| 类型 | 描述 |
|---|---|
Any
|
A tuple contains prepared value for the field. |
引发:
| 类型 | 描述 |
|---|---|
ValuesError
|
When There is an error in deserializing value for complex field. |
源代码位于: pydantic_settings/sources/providers/env.py
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 | |
next_field ¶
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
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
field
|
FieldInfo | Any | None
|
The field. |
必需 |
key
|
str
|
The key (env name). |
必需 |
case_sensitive
|
bool | None
|
Whether to search for key case sensitively. |
None
|
返回:
| 类型 | 描述 |
|---|---|
FieldInfo | None
|
Field if it finds the next field otherwise |
源代码位于: pydantic_settings/sources/providers/env.py
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 | |
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.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
field_name
|
str
|
The field name. |
必需 |
field
|
FieldInfo
|
The field. |
必需 |
env_vars
|
Mapping[str, str | None]
|
Environment variables. |
必需 |
返回:
| 类型 | 描述 |
|---|---|
dict[str, Any]
|
A dictionary contains extracted values from nested env values. |
源代码位于: pydantic_settings/sources/providers/env.py
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 | |
ForceDecode ¶
Annotation to force decoding of a field value.
InitSettingsSource ¶
InitSettingsSource(settings_cls: type[BaseSettings], init_kwargs: dict[str, Any], nested_model_default_partial_update: bool | None = None)
Bases: PydanticBaseSettingsSource
Source class for loading values provided during settings class initialization.
Source code in pydantic_settings/sources/base.py
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | |
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 pydantic_settings/sources/providers/json.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 | |
NoDecode ¶
Annotation to prevent decoding of a field value.
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 pydantic_settings/sources/base.py
91 92 93 94 95 | |
current_state
property
¶
The current state of the settings, populated by the previous settings sources.
settings_sources_data
property
¶
The state of all previous settings sources.
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.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
field
|
FieldInfo
|
The field. |
必需 |
field_name
|
str
|
The field name. |
必需 |
返回:
| 类型 | 描述 |
|---|---|
tuple[Any, str, bool]
|
A tuple that contains the value, key and a flag to determine whether value is complex. |
源代码位于: pydantic_settings/sources/base.py
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | |
field_is_complex ¶
Checks whether a field is complex, in which case it will attempt to be parsed as JSON.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
field
|
FieldInfo
|
The field. |
必需 |
返回:
| 类型 | 描述 |
|---|---|
bool
|
Whether the field is complex. |
源代码位于: pydantic_settings/sources/base.py
141 142 143 144 145 146 147 148 149 150 151 | |
prepare_field_value ¶
Prepares the value of a field.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
field_name
|
str
|
The field name. |
必需 |
field
|
FieldInfo
|
The field. |
必需 |
value
|
Any
|
The value of the field that has to be prepared. |
必需 |
value_is_complex
|
bool
|
A flag to determine whether value is complex. |
必需 |
返回:
| 类型 | 描述 |
|---|---|
Any
|
The prepared value. |
源代码位于: pydantic_settings/sources/base.py
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | |
decode_complex_value ¶
Decode the value for a complex field
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
field_name
|
str
|
The field name. |
必需 |
field
|
FieldInfo
|
The field. |
必需 |
value
|
Any
|
The value of the field that has to be prepared. |
必需 |
返回:
| 类型 | 描述 |
|---|---|
Any
|
The decoded value for further preparation |
源代码位于: pydantic_settings/sources/base.py
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | |
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 pydantic_settings/sources/providers/pyproject.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | |
SecretsSettingsSource ¶
SecretsSettingsSource(settings_cls: type[BaseSettings], secrets_dir: PathType | 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 pydantic_settings/sources/providers/secrets.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 | |
find_case_path
classmethod
¶
Find a file within path's directory matching filename, optionally ignoring case.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
dir_path
|
Path
|
Directory path. |
必需 |
file_name
|
str
|
File name. |
必需 |
case_sensitive
|
bool
|
Whether to search for file name case sensitively. |
必需 |
返回:
| 类型 | 描述 |
|---|---|
Path | None
|
Whether file path or |
源代码位于: pydantic_settings/sources/providers/secrets.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | |
get_field_value ¶
Gets the value for field from secret file and a flag to determine whether value is complex.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
field
|
FieldInfo
|
The field. |
必需 |
field_name
|
str
|
The field name. |
必需 |
返回:
| 类型 | 描述 |
|---|---|
tuple[Any, str, bool]
|
A tuple that contains the value ( |
源代码位于: pydantic_settings/sources/providers/secrets.py
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 | |
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 pydantic_settings/sources/providers/toml.py
49 50 51 52 53 54 55 56 | |
YamlConfigSettingsSource ¶
YamlConfigSettingsSource(settings_cls: type[BaseSettings], yaml_file: PathType | None = DEFAULT_PATH, yaml_file_encoding: str | None = None, yaml_config_section: str | None = None)
Bases: InitSettingsSource, ConfigFileSourceMixin
A source class that loads variables from a yaml file
Source code in pydantic_settings/sources/providers/yaml.py
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 | |
get_subcommand ¶
get_subcommand(model: PydanticModel, is_required: bool = True, cli_exit_on_error: bool | None = None) -> Optional[PydanticModel]
Get the subcommand from a model.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
model
|
PydanticModel
|
The model to get the subcommand from. |
必需 |
is_required
|
bool
|
Determines whether a model must have subcommand set and raises error if not
found. Defaults to |
True
|
cli_exit_on_error
|
bool | None
|
Determines whether this function exits with error if no subcommand is found.
Defaults to model_config |
None
|
返回:
| 类型 | 描述 |
|---|---|
Optional[PydanticModel]
|
The subcommand model if found, otherwise |
引发:
| 类型 | 描述 |
|---|---|
SystemExit
|
When no subcommand is found and is_required= |
SettingsError
|
When no subcommand is found and is_required= |
源代码位于: pydantic_settings/sources/base.py
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 | |