pydantic-settings
pydantic-settings copied to clipboard
Settings management using pydantic
Sorry for opening this as an issue. It is more a question or a discussion. I implement some custom sources for my settings object and with pydantic-settings v2 I have...
## Proposal PR to fulfill the feature proposal: - #139 ## Details - A `keyring_backend` is provided, and behaves similarly to the `env_file`: if the named backend is not found,...
### Initial Checks - [X] I have searched Google & GitHub for similar requests and couldn't find anything - [X] I have read and followed [the docs](https://docs.pydantic.dev) and still think...
## Outline - Setting env. variables for auth config is awkward, so `python-dotenv` can be used to load them from a `.env` text file instead - Keyrings can be preferable...
feature request: Load multiple .env files from different paths, or additionally support .ini files
Currently only one .env file is supported according to the source code, but sometimes the submodules of the project will have some custom variables that need to be set, and...
When pydantic loads the configuration, it records what data source the configuration is read from, and provides debug-level log output.i think if the feature is added, this library will work...
```console $ python -c "import pydantic.utils; print(pydantic.utils.version_info())" pydantic version: 1.3 pydantic compiled: False install path: /Users/andrew/.virtualenvs/project_name/lib/python3.7/site-packages/pydantic python version: 3.7.5 (default, Oct 19 2019, 01:20:12) [Clang 10.0.1 (clang-1001.0.46.4)] platform: Darwin-18.7.0-x86_64-i386-64bit optional...
I also opened an SO post FYI: https://stackoverflow.com/questions/78486685/is-it-possible-for-a-custom-pydanticbasesettingssource-to-retrieve-computed-valu I know the way it generally works is you use the field_name to locate the value, but I want to have a...
### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description When using nested `pydantic-settings` models, I am seeing unexpected behavior with the case_sensitive flag when reading...
Add Azure Key Vault settings source. **Doubt:** Where should I add the required Python packages (`azure-keyvault-secrets==4.8.0` and `azure-identity==1.16.0`) to use `AzureKeyVaultSettingsSource`? This is the infrastructure: ```terraform resource "azurerm_resource_group" "pydantic" {...