Skip to main content

Composable complex class support for attrs and dataclasses.

Reason this release was yanked:

Wrong dependency metadata

Project description

https://img.shields.io/pypi/v/cattrs.svg https://github.com/Tinche/cattrs/workflows/CI/badge.svg Documentation Status Supported Python versions https://codecov.io/gh/Tinche/cattrs/branch/master/graph/badge.svg https://img.shields.io/badge/code%20style-black-000000.svg

cattrs is an open source Python library for structuring and unstructuring data. cattrs works best with attrs classes, dataclasses and the usual Python collections, but other kinds of classes are supported by manually registering converters.

Python has a rich set of powerful, easy to use, built-in data types like dictionaries, lists and tuples. These data types are also the lingua franca of most data serialization libraries, for formats like json, msgpack, yaml or toml.

Data types like this, and mappings like dict s in particular, represent unstructured data. Your data is, in all likelihood, structured: not all combinations of field names are values are valid inputs to your programs. In Python, structured data is better represented with classes and enumerations. attrs is an excellent library for declaratively describing the structure of your data, and validating it.

When you’re handed unstructured data (by your network, file system, database…), cattrs helps to convert this data into structured data. When you have to convert your structured data into data types other libraries can handle, cattrs turns your classes and enumerations into dictionaries, integers and strings.

Here’s a simple taste. The list containing a float, an int and a string gets converted into a tuple of three ints.

>>> import cattr
>>>
>>> cattr.structure([1.0, 2, "3"], tuple[int, int, int])
(1, 2, 3)

cattrs works well with attrs classes out of the box.

>>> import attr, cattr
>>>
>>> @attr.frozen  # It works with normal classes too.
... class C:
...     a = attr.ib()
...     b = attr.ib()
...
>>> instance = C(1, 'a')
>>> cattr.unstructure(instance)
{'a': 1, 'b': 'a'}
>>> cattr.structure({'a': 1, 'b': 'a'}, C)
C(a=1, b='a')

Here’s a much more complex example, involving attrs classes with type metadata.

>>> from enum import unique, Enum
>>> from typing import Optional, Sequence, Union
>>> from cattr import structure, unstructure
>>> import attr
>>>
>>> @unique
... class CatBreed(Enum):
...     SIAMESE = "siamese"
...     MAINE_COON = "maine_coon"
...     SACRED_BIRMAN = "birman"
...
>>> @attr.define
... class Cat:
...     breed: CatBreed
...     names: Sequence[str]
...
>>> @attr.define
... class DogMicrochip:
...     chip_id = attr.ib()
...     time_chipped: float = attr.ib()
...
>>> @attr.define
... class Dog:
...     cuteness: int
...     chip: Optional[DogMicrochip]
...
>>> p = unstructure([Dog(cuteness=1, chip=DogMicrochip(chip_id=1, time_chipped=10.0)),
...                  Cat(breed=CatBreed.MAINE_COON, names=('Fluffly', 'Fluffer'))])
...
>>> print(p)
[{'cuteness': 1, 'chip': {'chip_id': 1, 'time_chipped': 10.0}}, {'breed': 'maine_coon', 'names': ('Fluffly', 'Fluffer')}]
>>> print(structure(p, list[Union[Dog, Cat]]))
[Dog(cuteness=1, chip=DogMicrochip(chip_id=1, time_chipped=10.0)), Cat(breed=<CatBreed.MAINE_COON: 'maine_coon'>, names=['Fluffly', 'Fluffer'])]

Consider unstructured data a low-level representation that needs to be converted to structured data to be handled, and use structure. When you’re done, unstructure the data to its unstructured form and pass it along to another library or module. Use attrs type metadata to add type metadata to attributes, so cattrs will know how to structure and destructure them.

  • Free software: MIT license

  • Documentation: https://cattrs.readthedocs.io.

  • Python versions supported: 3.7 and up. (Older Python versions, like 2.7, 3.5 and 3.6 are supported by older versions; see the changelog.)

Features

  • Converts structured data into unstructured data, recursively:

    • attrs classes and dataclasses are converted into dictionaries in a way similar to attr.asdict, or into tuples in a way similar to attr.astuple.

    • Enumeration instances are converted to their values.

    • Other types are let through without conversion. This includes types such as integers, dictionaries, lists and instances of non-attrs classes.

    • Custom converters for any type can be registered using register_unstructure_hook.

  • Converts unstructured data into structured data, recursively, according to your specification given as a type. The following types are supported:

    • typing.Optional[T].

    • typing.List[T], typing.MutableSequence[T], typing.Sequence[T] (converts to a list).

    • typing.Tuple (both variants, Tuple[T, ...] and Tuple[X, Y, Z]).

    • typing.MutableSet[T], typing.Set[T] (converts to a set).

    • typing.FrozenSet[T] (converts to a frozenset).

    • typing.Dict[K, V], typing.MutableMapping[K, V], typing.Mapping[K, V] (converts to a dict).

    • attrs classes with simple attributes and the usual __init__.

      • Simple attributes are attributes that can be assigned unstructured data, like numbers, strings, and collections of unstructured data.

    • All attrs classes and dataclasses with the usual __init__, if their complex attributes have type metadata.

    • typing.Union s of supported attrs classes, given that all of the classes have a unique field.

    • typing.Union s of anything, given that you provide a disambiguation function for it.

    • Custom converters for any type can be registered using register_structure_hook.

cattrs comes with preconfigured converters for a number of serialization libraries, including json, msgpack, bson, yaml and toml. For details, see the cattr.preconf package.

Credits

Major credits to Hynek Schlawack for creating attrs and its predecessor, characteristic.

cattrs is tested with Hypothesis, by David R. MacIver.

cattrs is benchmarked using perf and pytest-benchmark.

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

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

cattrs-1.6.0.tar.gz (20.4 kB view details)

Uploaded Source

Built Distribution

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

cattrs-1.6.0-py3-none-any.whl (22.1 kB view details)

Uploaded Python 3

File details

Details for the file cattrs-1.6.0.tar.gz.

File metadata

  • Download URL: cattrs-1.6.0.tar.gz
  • Upload date:
  • Size: 20.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.9.2 Linux/5.8.0-50-generic

File hashes

Hashes for cattrs-1.6.0.tar.gz
Algorithm Hash digest
SHA256 3e2cd5dc8a1006d5da53ddcbf4f0b1dd3a21e294323b257678d0a96721f8253a
MD5 09e06ddde2d08847891f94467dd93145
BLAKE2b-256 0f63423007f57b6b07159cb945bbdb9395d9e78b8218b6eb0233a5f2f365f164

See more details on using hashes here.

File details

Details for the file cattrs-1.6.0-py3-none-any.whl.

File metadata

  • Download URL: cattrs-1.6.0-py3-none-any.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.9.2 Linux/5.8.0-50-generic

File hashes

Hashes for cattrs-1.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c8de53900e3acad94ca83750eb12bb38aa85ce9114be47177c943e2f0eca63b0
MD5 14ea7104ca3a2e527b63178adac29142
BLAKE2b-256 06409a3f0e80af334bd808549c0b09fafe44269ddf261933f97723fd9b3f0deb

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