Skip to main content

Utilities for providing compatibility with many dataclass-like libraries

Project description

fieldz

License PyPI Python Version CI codecov

Unified API for working with multiple dataclass-like libraries

Dataclass patterns

There are many libraries that implement a similar dataclass-like pattern!

dataclasses.dataclass

import dataclasses

@dataclasses.dataclass
class SomeDataclass:
    a: int = 0
    b: str = "b"
    c: list[int] = dataclasses.field(default_factory=list)

pydantic.BaseModel

import pydantic

class SomePydanticModel(pydantic.BaseModel):
    a: int = 0
    b: str = "b"
    c: list[int] = pydantic.Field(default_factory=list)

attrs.define

import attrs

@attrs.define
class SomeAttrsModel:
    a: int = 0
    b: str = "b"
    c: list[int] = attrs.field(factory=list)

msgspec.Struct

import msgspec

class SomeMsgspecStruct(msgspec.Struct):
    a: int = 0
    b: str = "b"
    c: list[int] = msgspec.field(default_factory=list)

etc...

Unified API

These are all awesome libraries, and each has its own strengths and weaknesses. Sometimes, however, you just want to be able to query basic information about a dataclass-like object, such as getting field names or types, or converting it to a dictionary.

fieldz provides a unified API for these operations (following or extending the API from dataclasses when possible).

def fields(obj: Any) -> tuple[Field, ...]:
    """Return a tuple of fieldz.Field objects for the object."""

def replace(obj: Any, /, **changes: Any) -> Any:
    """Return a copy of obj with the specified changes."""

def asdict(obj: Any) -> dict[str, Any]:
    """Return a dict representation of obj."""

def astuple(obj: Any) -> tuple[Any, ...]:
    """Return a tuple representation of obj."""

def params(obj: Any) -> DataclassParams:
    """Return parameters used to define the dataclass."""

The fieldz.Field and fieldz.DataclassParam objects are simple dataclasses that match the protocols of dataclasses.Field and the (private) dataclasses._DataclassParams objects, respectively. The field object also adds a native_field attribute that is the original field object from the underlying library.

Example

from fieldz import Field, fields

standardized_fields = (
    Field(name="a", type=int, default=0),
    Field(name="b", type=str, default="b"),
    Field(name="c", type=list[int], default_factory=list),
)

assert (
    fields(SomeDataclass)
    == fields(SomePydanticModel)
    == fields(SomeAttrsModel)
    == fields(SomeMsgspecStruct)
    == standardized_fields
)

Supported libraries

... maybe someday?

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

fieldz-0.2.0.tar.gz (18.2 kB view details)

Uploaded Source

Built Distribution

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

fieldz-0.2.0-py3-none-any.whl (17.9 kB view details)

Uploaded Python 3

File details

Details for the file fieldz-0.2.0.tar.gz.

File metadata

  • Download URL: fieldz-0.2.0.tar.gz
  • Upload date:
  • Size: 18.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fieldz-0.2.0.tar.gz
Algorithm Hash digest
SHA256 e11215188cad5c5371113d2b7707155960efd0d48500b6bf675648bc3f6fc8d6
MD5 967e1831f4c55ff59f12737be8e2076a
BLAKE2b-256 f8467a8d1db959eabd5d3e52bd3c000a8b132184b7651cbd5481c4cbf31ff65d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fieldz-0.2.0.tar.gz:

Publisher: ci.yml on pyapp-kit/fieldz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fieldz-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: fieldz-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 17.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fieldz-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 43b5be702816df39f55d08ae392eaabe58d3c69d2e4b61a853252cb2da41931f
MD5 52ca111c6b7174cbeec8bb9606c6c5ca
BLAKE2b-256 fe9d9034acaf3d80e85deb3d49876cb734479327b9cf89a918815ef67cb6b36c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fieldz-0.2.0-py3-none-any.whl:

Publisher: ci.yml on pyapp-kit/fieldz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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