Skip to main content

Adds some YAML functionality to the excellent `pydantic` library.

Project description

pydantic-yaml

This is a small helper library that adds some YAML capabilities to pydantic, namely dumping to yaml via the yaml_model.yaml() function, and parsing from strings/files using YamlModel.parse_raw() and YamlModel.parse_file(). It also adds an Enum subclass that gets dumped to YAML as a string, and fixes dumping of some typical types.

Usage

Example usage is seen below.

from pydantic_yaml import YamlEnum, YamlModel


class MyEnum(str, YamlEnum):
    a = "a"
    b = "b"


class MyModel(YamlModel):
    x: int = 1
    e: MyEnum = MyEnum.a

m1 = MyModel(x=2, e="b")
yml = m1.yaml()

m2 = MyModel.parse_raw(yml, proto="yaml")
assert m1 == m2

m3 = MyModel.parse_raw(yml, content_type="application/yaml")
assert m1 == m3

Installation

pip install pydantic_yaml

Make sure to install ruamel.yaml (recommended) or pyyaml as well. These are optional dependencies:

pip install pydantic_yaml[ruamel]

pip install pydantic_yaml[pyyaml]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydantic_yaml-0.2.1.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pydantic_yaml-0.2.1-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file pydantic_yaml-0.2.1.tar.gz.

File metadata

  • Download URL: pydantic_yaml-0.2.1.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pydantic_yaml-0.2.1.tar.gz
Algorithm Hash digest
SHA256 73c5c18249d81911f4126080b3061b818f1f4005b05bc6537e9d7c6470d05f97
MD5 ad3a41ab55372d596e62dac7c5a6f941
BLAKE2b-256 03eb356e47a59892f53d81c713ae5ef4e5b2cbfd1e9d4d9c51dbd4e5419916e5

See more details on using hashes here.

File details

Details for the file pydantic_yaml-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: pydantic_yaml-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pydantic_yaml-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 38ad0578bb8280279edc1d5b55946720451e75e073725bb2922bedfc1978b75a
MD5 de368d5777877f467a3be045cfc05579
BLAKE2b-256 601d09f6b2c7113889e5fd184d61a3127e395e7bac88fbaa9a4739def7408d35

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page