Utility library for dash-pydantic-form, providing model handling, validation, and serialization helpers for building dynamic forms with Dash and Pydantic v2. Current version 0.18.3, requires Python >=3.10,<3.14. Active development with frequent releases.
pip install dash-pydantic-utilsVerified import paths — ran on the pinned version, not inferred.
Basic usage creating a form from a Pydantic model.
Change 'from dash_pydantic_form import ModelForm' to 'from dash_pydantic_utils import ModelForm'
Replace 'Form' imports with 'ModelForm' from dash_pydantic_utils.
Ensure your model inherits from pydantic.BaseModel (v2), not v1 BaseModel.