Hipster-orgazmic tool to mange application settings
Project description
Pydantic settings
Hipster-orgazmic tool to mange application settings
Library which extends pydantic functionality in scope of application settings. Pydantic already have settings
implementation, e.g. pydantic.BaseSettings
, but from my point it's missing some useful features:
- Overriding settings values by environment variables even for nested fields
- Providing detailed information about value location inside a loaded file or environment variable, which helps to point user mistake
- Documenting model fields isn't feels comfortable, but it's really essential to write comprehensive documentation for application settings
NOTE: Alpha quality
Installation
Using pip:
pip install pydantic-settings
Usage example
Override values by env variables
Allows to override values for nested fields if they are represented as pydantic model.
Here is example:
from pydantic import BaseModel, ValidationError
from pydantic_settings import BaseSettingsModel
class Nested(BaseModel):
foo: int
class Settings(BaseSettingsModel):
nested: Nested
try:
Settings.from_env({'APP_nested_FOO': 'NOT AN INT'})
except ValidationError as e:
assert e.raw_errors[0].env_loc == 'APP_nested_FOO' # shows exact env variable name
Point exact error location inside file
from pydantic import BaseModel, IntegerError
from pydantic_settings import BaseSettingsModel, LoadingValidationError, load_settings, FileLocation
class Nested(BaseModel):
foo: int
class Settings(BaseSettingsModel):
nested: Nested
conf_text = """
nested:
foo: 'NOT AN INT'
"""
try:
load_settings(Settings, conf_text, type_hint='yaml')
except LoadingValidationError as e:
assert e.raw_errors[0].loc == ('nested', 'foo')
assert e.raw_errors[0].text_loc == FileLocation(line=3, col=10, end_line=3, end_col=22)
assert isinstance(e.raw_errors[0].exc, IntegerError)
Extracts fields documentation
Allows to extract Sphinx style attributes documentation by processing AST tree of class definition
from pydantic_settings import BaseSettingsModel
class Foo(BaseSettingsModel):
class Config:
build_attr_docs = True
bar: str
"""here is docs"""
#: this style is't supported, but probably will be added in future
baz: int
assert Foo.__fields__['bar'].schema.description == 'here is docs'
assert Foo.__fields__['baz'].schema.description is None # :(
Online docs
Read more detailed documentation on the project Read The Docs page.
Development setup
Project requires poetry for development setup.
- If you aren't have it already
pip install poetry
- Install project dependencies
poetry install
- Run tests
poetry run pytest .
-
Great, all works! Expect one optional step:
-
Install pre-commit for pre-commit hooks
pip install pre-commit
pre-commit install
That will install pre-commit hooks, which will check code with flake8 and black.
NOTE project uses black as code formatter, but i'am personally really dislike their "double quoted strings everywhere" style, that's why
black -S
should be used (anyway it's configured in pyproject.toml file)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pydantic-settings-0.1.2b0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9166293fcef9baaf2859e2e83b3dfa36c91b7529868cc377b35f15091033f4c |
|
MD5 | bd6a31a4d53a0a4aaefa8be2aee8ea1f |
|
BLAKE2b-256 | d7fad09dec80c00724cc995f442b8e2f222f570bdec731a84633a7d1f7122a41 |
Hashes for pydantic_settings-0.1.2b0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e35385e738fa25b51a06180959344de5633d8d0d39053d8df5f9c39f3a93bef8 |
|
MD5 | 9b6ac24b360296e18ebaa8885bee1a08 |
|
BLAKE2b-256 | 893e8db372db1bead0edb07759948e1b28473f26ee13832f260e873a60b9beb2 |