Skip to main content

Create ASDF tags with pydantic models

Project description

asdf-pydantic

PyPI - Version PyPI - Python Version Documentation Status

Create ASDF tags with pydantic models.

from asdf_pydantic import AsdfPydanticModel

class Rectangle(AsdfPydanticModel):
    _tag = "asdf://asdf-pydantic/examples/tags/rectangle-1.0.0"

    width: float
    height: float

# After creating extension and install ...

af = asdf.AsdfFile()
af["rect"] = Rectangle(width=1, height=1)
#ASDF 1.0.0
#ASDF_STANDARD 1.5.0
%YAML 1.1
%TAG ! tag:stsci.edu:asdf/
--- !core/asdf-1.1.0
asdf_library: !core/software-1.0.0 {
    author: The ASDF Developers,
    homepage: 'http://github.com/asdf-format/asdf',
    name: asdf,
    version: 2.14.3}
history:
  extensions:
  - !core/extension_metadata-1.0.0
    extension_class: asdf.extension.BuiltinExtension
    software: !core/software-1.0.0 {
        name: asdf,
        version: 2.14.3}
  - !core/extension_metadata-1.0.0 {
    extension_class: mypackage.shapes.ShapesExtension,
    extension_uri: 'asdf://asdf-pydantic/shapes/extensions/shapes-1.0.0'}
rect: !<asdf://asdf-pydantic/shapes/tags/rectangle-1.0.0> {
    height: 1.0,
    width: 1.0}
...

Features

  • Create ASDF tag from your pydantic models with batteries (converters) included.
  • Validates data models as you create them and not only when reading and writing ASDF files.
  • Preserve Python types when deserializing ASDF files.
  • All the cool things that comes with pydantic (e.g., JSON encoder, JSON schema, Pydantic types).
  • Comes with ASDF schemas (TBD).

Installation

pip install asdf-pydantic

Usage

Define your data model with AsdfPydanticModel. For pydantic fans, this has all the features of pydantic's BaseModel.

# mypackage/shapes.py
from asdf_pydantic import AsdfPydanticModel

class Rectangle(AsdfPydanticModel):
    _tag = "asdf://asdf-pydantic/examples/tags/rectangle-1.0.0"

    width: float
    height: float

Then create an extension with the converter included with asdf-pydantic:

# mypackage/extensions.py
from asdf.extension import Extension
from asdf_pydantic.converter import AsdfPydanticConverter
from mypackage.shapes import Rectangle

converter = AsdfPydanticConverter()
converter.add_models(Rectangle)

class ShapesExtension(Extension):
    extension_uri = "asdf://asdf-pydantic/examples/extensions/shapes-1.0.0"
    converters = [converter]
    tags = [*converter.tags]

Install the extension either by entry point specification or add it to asdf.get_config():

import asdf
from mypackage.extensions import ShapeExtension

asdf.get_config().add_extension(ShapesExtension())

af = asdf.AsdfFile()
af["rect"] = Rectangle(width=1, height=1)

with open("shapes.asdf", "wb") as fp:
    af.write_to(fp)

:maxdepth: 1
model
autoapi

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

asdf_pydantic-2.0.0a3.tar.gz (14.9 kB view details)

Uploaded Source

Built Distribution

asdf_pydantic-2.0.0a3-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file asdf_pydantic-2.0.0a3.tar.gz.

File metadata

  • Download URL: asdf_pydantic-2.0.0a3.tar.gz
  • Upload date:
  • Size: 14.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for asdf_pydantic-2.0.0a3.tar.gz
Algorithm Hash digest
SHA256 12df79cc0d344fec1e9388f6bbeabfe6c6bf710d343a3f8fddd690e54b5e51f2
MD5 0ad2e02b6a5c5f266ec86ac29799c81f
BLAKE2b-256 24299d19aa7a2c732544400878a4c18f71b2fe404e461fd64c502d45057101b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for asdf_pydantic-2.0.0a3.tar.gz:

Publisher: release.yml on ketozhang/asdf-pydantic

Attestations:

File details

Details for the file asdf_pydantic-2.0.0a3-py3-none-any.whl.

File metadata

File hashes

Hashes for asdf_pydantic-2.0.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 4482863eda76eb08ca83d8ffb87f0b77cf80e7b9ef9a1a20492e5a23596d01ba
MD5 a025ef9645bd624da7746eb02742943c
BLAKE2b-256 0f99b88ed91a8905f528d94427b51dae0456e89303f8a92a12f3f00e5e0737d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for asdf_pydantic-2.0.0a3-py3-none-any.whl:

Publisher: release.yml on ketozhang/asdf-pydantic

Attestations:

Supported by

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