Adds some YAML functionality to the excellent `pydantic` library.
Project description
Pydantic-YAML
Pydantic-YAML adds YAML capabilities to Pydantic, which is an excellent Python library for data validation and settings management. If you aren't familiar with Pydantic, I would suggest you first check out their docs.
Documentation on ReadTheDocs.org
Basic Usage
from enum import Enum
from pydantic import BaseModel, validator
from pydantic_yaml import parse_yaml_raw_as, to_yaml_str
class MyEnum(str, Enum):
"""A custom enumeration that is YAML-safe."""
a = "a"
b = "b"
class InnerModel(BaseModel):
"""A normal pydantic model that can be used as an inner class."""
fld: float = 1.0
class MyModel(BaseModel):
"""Our custom Pydantic model."""
x: int = 1
e: MyEnum = MyEnum.a
m: InnerModel = InnerModel()
@validator("x")
def _chk_x(cls, v: int) -> int: # noqa
"""You can add your normal pydantic validators, like this one."""
assert v > 0
return v
m1 = MyModel(x=2, e="b", m=InnerModel(fld=1.5))
# This dumps to YAML and JSON respectively
yml = to_yaml_str(m1)
jsn = m1.json()
# This parses YAML as the MyModel type
m2 = parse_yaml_raw_as(MyModel, yml)
assert m1 == m2
# JSON is also valid YAML, so this works too
m3 = parse_yaml_raw_as(MyModel, jsn)
assert m1 == m3
With Pydantic v2, you can also dump dataclasses:
from pydantic import RootModel
from pydantic.dataclasses import dataclass
from pydantic.version import VERSION as PYDANTIC_VERSION
from pydantic_yaml import to_yaml_str
assert PYDANTIC_VERSION >= "2"
@dataclass
class YourType:
foo: str = "bar"
obj = YourType(foo="wuz")
assert to_yaml_str(RootModel[YourType](obj)) == 'foo: wuz\n'
Configuration
Currently we use the JSON dumping of Pydantic to perform most of the magic.
This uses the Config
inner class,
as in Pydantic:
class MyModel(BaseModel):
# ...
class Config:
# You can override these fields, which affect JSON and YAML:
json_dumps = my_custom_dumper
json_loads = lambda x: MyModel()
# As well as other Pydantic configuration:
allow_mutation = False
You can control some YAML-specfic options via the keyword options:
to_yaml_str(model, indent=4) # Makes it wider
to_yaml_str(model, map_indent=9, sequence_indent=7) # ... you monster.
You can additionally pass your own YAML
instance:
from ruamel.yaml import YAML
my_writer = YAML(typ="safe")
my_writer.default_flow_style = True
to_yaml_file("foo.yaml", model, custom_yaml_writer=my_writer)
A separate configuration for YAML specifically will be added later, likely in v2.
Breaking Changes for pydantic-yaml
V1
The API for pydantic-yaml
version 1.0.0 has been greatly simplified!
Mixin Class
This functionality has currently been removed!
YamlModel
and YamlModelMixin
base classes are no longer needed.
The plan is to re-add it before v1 fully releases,
to allow the .yaml()
or .parse_*()
methods.
However, this will be availble only for pydantic<2
.
Versioned Models
This functionality has been removed, as it's questionably useful for most users. There is an example in the docs that's available.
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
File details
Details for the file pydantic_yaml-1.4.0.tar.gz
.
File metadata
- Download URL: pydantic_yaml-1.4.0.tar.gz
- Upload date:
- Size: 21.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09f6b9ec9d80550dd3a58596a6a0948a1830fae94b73329b95c2b9dbfc35ae00 |
|
MD5 | cd715f37a918155f6a14269a622bad1f |
|
BLAKE2b-256 | 84b819446b74d31a6ff09eb69af3be01c5031c8bf5dc62e4205a22d50d629333 |
Provenance
The following attestation bundles were made for pydantic_yaml-1.4.0.tar.gz
:
Publisher:
python-publish.yml
on NowanIlfideme/pydantic-yaml
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pydantic_yaml-1.4.0.tar.gz
- Subject digest:
09f6b9ec9d80550dd3a58596a6a0948a1830fae94b73329b95c2b9dbfc35ae00
- Sigstore transparency entry: 148184254
- Sigstore integration time:
- Predicate type:
File details
Details for the file pydantic_yaml-1.4.0-py3-none-any.whl
.
File metadata
- Download URL: pydantic_yaml-1.4.0-py3-none-any.whl
- Upload date:
- Size: 17.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9ad82d8c0548e779e00d6ec639f6efa8f8c7e14d12d0bf9fdc400a37300d7ba |
|
MD5 | 5936113384f6379350885cb994af8a38 |
|
BLAKE2b-256 | 41e1e4b108753491a6545c66cdd7546e726b056bbe3902f9ef8a58ed118afd70 |
Provenance
The following attestation bundles were made for pydantic_yaml-1.4.0-py3-none-any.whl
:
Publisher:
python-publish.yml
on NowanIlfideme/pydantic-yaml
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pydantic_yaml-1.4.0-py3-none-any.whl
- Subject digest:
f9ad82d8c0548e779e00d6ec639f6efa8f8c7e14d12d0bf9fdc400a37300d7ba
- Sigstore transparency entry: 148184255
- Sigstore integration time:
- Predicate type: