cattrs


Namecattrs JSON
Version 23.2.3 PyPI version JSON
download
home_page
SummaryComposable complex class support for attrs and dataclasses.
upload_time2023-11-30 22:19:21
maintainer
docs_urlNone
author
requires_python>=3.8
licenseMIT
keywords attrs dataclasses serialization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # cattrs

<a href="https://pypi.python.org/pypi/cattrs"><img src="https://img.shields.io/pypi/v/cattrs.svg"/></a>
<a href="https://github.com/python-attrs/cattrs/actions?workflow=CI"><img src="https://github.com/python-attrs/cattrs/workflows/CI/badge.svg"/></a>
<a href="https://catt.rs/en/latest/?badge=latest"><img src="https://readthedocs.org/projects/cattrs/badge/?version=latest" alt="Documentation Status"/></a>
<a href="https://github.com/python-attrs/cattrs"><img src="https://img.shields.io/pypi/pyversions/cattrs.svg" alt="Supported Python versions"/></a>
<a href="https://github.com/python-attrs/cattrs/actions/workflows/main.yml"><img src="https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/Tinche/22405310d6a663164d894a2beab4d44d/raw/covbadge.json"/></a>
<a href="https://github.com/psf/black"><img src="https://img.shields.io/badge/code%20style-black-000000.svg"/></a>

---

**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, cbor,
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 or 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.

```python
>>> import cattrs

>>> cattrs.structure([1.0, 2, "3"], tuple[int, int, int])
(1, 2, 3)
```

_cattrs_ works well with _attrs_ classes out of the box.

```python
>>> from attrs import frozen
>>> import cattrs

>>> @frozen  # It works with non-frozen classes too.
... class C:
...     a: int
...     b: str

>>> instance = C(1, 'a')
>>> cattrs.unstructure(instance)
{'a': 1, 'b': 'a'}
>>> cattrs.structure({'a': 1, 'b': 'a'}, C)
C(a=1, b='a')
```

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

```python
>>> from enum import unique, Enum
>>> from typing import Optional, Sequence, Union
>>> from cattrs import structure, unstructure
>>> from attrs import define, field

>>> @unique
... class CatBreed(Enum):
...     SIAMESE = "siamese"
...     MAINE_COON = "maine_coon"
...     SACRED_BIRMAN = "birman"

>>> @define
... class Cat:
...     breed: CatBreed
...     names: Sequence[str]

>>> @define
... class DogMicrochip:
...     chip_id = field()  # Type annotations are optional, but recommended
...     time_chipped: float = field()

>>> @define
... class Dog:
...     cuteness: int
...     chip: Optional[DogMicrochip] = None

>>> 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](http://attrs.readthedocs.io/en/stable/examples.html#types)
to add type metadata to attributes, so _cattrs_ will know how to structure and
destructure them.

- Free software: MIT license
- Documentation: https://catt.rs
- Python versions supported: 3.8 and up. (Older Python versions 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 `attrs.asdict`, or into tuples in a way similar to `attrs.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).
  - `typing.TypedDict`.
  - _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, cbor2, bson, yaml and toml.
For details, see the [cattrs.preconf package](https://catt.rs/en/stable/preconf.html).

## Design Decisions

_cattrs_ is based on a few fundamental design decisions.

- Un/structuring rules are separate from the models.
  This allows models to have a one-to-many relationship with un/structuring rules, and to create un/structuring rules for models which you do not own and you cannot change.
  (_cattrs_ can be configured to use un/structuring rules from models using the [`use_class_methods` strategy](https://catt.rs/en/latest/strategies.html#using-class-specific-structure-and-unstructure-methods).)
- Invent as little as possible; reuse existing ordinary Python instead.
  For example, _cattrs_ did not have a custom exception type to group exceptions until the sanctioned Python [`exceptiongroups`](https://docs.python.org/3/library/exceptions.html#ExceptionGroup).
  A side-effect of this design decision is that, in a lot of cases, when you're solving _cattrs_ problems you're actually learning Python instead of learning _cattrs_.
- Refuse the temptation to guess.
  If there are two ways of solving a problem, _cattrs_ should refuse to guess and let the user configure it themselves.

A foolish consistency is the hobgoblin of little minds so these decisions can and are sometimes broken, but they have proven to be a good foundation.

## Additional documentation and talks

- [On structured and unstructured data, or the case for cattrs](https://threeofwands.com/on-structured-and-unstructured-data-or-the-case-for-cattrs/)
- [Why I use attrs instead of pydantic](https://threeofwands.com/why-i-use-attrs-instead-of-pydantic/)
- [cattrs I: un/structuring speed](https://threeofwands.com/why-cattrs-is-so-fast/)
- [Python has a macro language - it's Python (PyCon IT 2022)](https://www.youtube.com/watch?v=UYRSixikUTo)
- [Intro to cattrs 23.1](https://threeofwands.com/intro-to-cattrs-23-1-0/)

## Credits

Major credits to Hynek Schlawack for creating [attrs](https://attrs.org) and its predecessor, [characteristic](https://github.com/hynek/characteristic).

_cattrs_ is tested with [Hypothesis](http://hypothesis.readthedocs.io/en/latest/), by David R. MacIver.

_cattrs_ is benchmarked using [perf](https://github.com/haypo/perf) and [pytest-benchmark](https://pytest-benchmark.readthedocs.io/en/latest/index.html).

This package was created with [Cookiecutter](https://github.com/audreyr/cookiecutter) and the [`audreyr/cookiecutter-pypackage`](https://github.com/audreyr/cookiecutter-pypackage) project template.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "cattrs",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "attrs,dataclasses,serialization",
    "author": "",
    "author_email": "Tin Tvrtkovic <tinchester@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/1e/57/c6ccd22658c4bcb3beb3f1c262e1f170cf136e913b122763d0ddd328d284/cattrs-23.2.3.tar.gz",
    "platform": null,
    "description": "# cattrs\n\n<a href=\"https://pypi.python.org/pypi/cattrs\"><img src=\"https://img.shields.io/pypi/v/cattrs.svg\"/></a>\n<a href=\"https://github.com/python-attrs/cattrs/actions?workflow=CI\"><img src=\"https://github.com/python-attrs/cattrs/workflows/CI/badge.svg\"/></a>\n<a href=\"https://catt.rs/en/latest/?badge=latest\"><img src=\"https://readthedocs.org/projects/cattrs/badge/?version=latest\" alt=\"Documentation Status\"/></a>\n<a href=\"https://github.com/python-attrs/cattrs\"><img src=\"https://img.shields.io/pypi/pyversions/cattrs.svg\" alt=\"Supported Python versions\"/></a>\n<a href=\"https://github.com/python-attrs/cattrs/actions/workflows/main.yml\"><img src=\"https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/Tinche/22405310d6a663164d894a2beab4d44d/raw/covbadge.json\"/></a>\n<a href=\"https://github.com/psf/black\"><img src=\"https://img.shields.io/badge/code%20style-black-000000.svg\"/></a>\n\n---\n\n**cattrs** is an open source Python library for structuring and unstructuring\ndata. _cattrs_ works best with _attrs_ classes, dataclasses and the usual\nPython collections, but other kinds of classes are supported by manually\nregistering converters.\n\nPython has a rich set of powerful, easy to use, built-in data types like\ndictionaries, lists and tuples. These data types are also the lingua franca\nof most data serialization libraries, for formats like json, msgpack, cbor,\nyaml or toml.\n\nData types like this, and mappings like `dict` s in particular, represent\nunstructured data. Your data is, in all likelihood, structured: not all\ncombinations of field names or values are valid inputs to your programs. In\nPython, structured data is better represented with classes and enumerations.\n_attrs_ is an excellent library for declaratively describing the structure of\nyour data, and validating it.\n\nWhen you're handed unstructured data (by your network, file system, database...),\n_cattrs_ helps to convert this data into structured data. When you have to\nconvert your structured data into data types other libraries can handle,\n_cattrs_ turns your classes and enumerations into dictionaries, integers and\nstrings.\n\nHere's a simple taste. The list containing a float, an int and a string\ngets converted into a tuple of three ints.\n\n```python\n>>> import cattrs\n\n>>> cattrs.structure([1.0, 2, \"3\"], tuple[int, int, int])\n(1, 2, 3)\n```\n\n_cattrs_ works well with _attrs_ classes out of the box.\n\n```python\n>>> from attrs import frozen\n>>> import cattrs\n\n>>> @frozen  # It works with non-frozen classes too.\n... class C:\n...     a: int\n...     b: str\n\n>>> instance = C(1, 'a')\n>>> cattrs.unstructure(instance)\n{'a': 1, 'b': 'a'}\n>>> cattrs.structure({'a': 1, 'b': 'a'}, C)\nC(a=1, b='a')\n```\n\nHere's a much more complex example, involving `attrs` classes with type\nmetadata.\n\n```python\n>>> from enum import unique, Enum\n>>> from typing import Optional, Sequence, Union\n>>> from cattrs import structure, unstructure\n>>> from attrs import define, field\n\n>>> @unique\n... class CatBreed(Enum):\n...     SIAMESE = \"siamese\"\n...     MAINE_COON = \"maine_coon\"\n...     SACRED_BIRMAN = \"birman\"\n\n>>> @define\n... class Cat:\n...     breed: CatBreed\n...     names: Sequence[str]\n\n>>> @define\n... class DogMicrochip:\n...     chip_id = field()  # Type annotations are optional, but recommended\n...     time_chipped: float = field()\n\n>>> @define\n... class Dog:\n...     cuteness: int\n...     chip: Optional[DogMicrochip] = None\n\n>>> p = unstructure([Dog(cuteness=1, chip=DogMicrochip(chip_id=1, time_chipped=10.0)),\n...                  Cat(breed=CatBreed.MAINE_COON, names=('Fluffly', 'Fluffer'))])\n\n>>> print(p)\n[{'cuteness': 1, 'chip': {'chip_id': 1, 'time_chipped': 10.0}}, {'breed': 'maine_coon', 'names': ('Fluffly', 'Fluffer')}]\n>>> print(structure(p, list[Union[Dog, Cat]]))\n[Dog(cuteness=1, chip=DogMicrochip(chip_id=1, time_chipped=10.0)), Cat(breed=<CatBreed.MAINE_COON: 'maine_coon'>, names=['Fluffly', 'Fluffer'])]\n```\n\nConsider unstructured data a low-level representation that needs to be converted\nto structured data to be handled, and use `structure`. When you're done,\n`unstructure` the data to its unstructured form and pass it along to another\nlibrary or module. Use [attrs type metadata](http://attrs.readthedocs.io/en/stable/examples.html#types)\nto add type metadata to attributes, so _cattrs_ will know how to structure and\ndestructure them.\n\n- Free software: MIT license\n- Documentation: https://catt.rs\n- Python versions supported: 3.8 and up. (Older Python versions are supported by older versions; see the changelog.)\n\n## Features\n\n- Converts structured data into unstructured data, recursively:\n\n  - _attrs_ classes and dataclasses are converted into dictionaries in a way similar to `attrs.asdict`, or into tuples in a way similar to `attrs.astuple`.\n  - Enumeration instances are converted to their values.\n  - Other types are let through without conversion. This includes types such as\n    integers, dictionaries, lists and instances of non-_attrs_ classes.\n  - Custom converters for any type can be registered using `register_unstructure_hook`.\n\n- Converts unstructured data into structured data, recursively, according to\n  your specification given as a type. The following types are supported:\n\n  - `typing.Optional[T]`.\n  - `typing.List[T]`, `typing.MutableSequence[T]`, `typing.Sequence[T]` (converts to a list).\n  - `typing.Tuple` (both variants, `Tuple[T, ...]` and `Tuple[X, Y, Z]`).\n  - `typing.MutableSet[T]`, `typing.Set[T]` (converts to a set).\n  - `typing.FrozenSet[T]` (converts to a frozenset).\n  - `typing.Dict[K, V]`, `typing.MutableMapping[K, V]`, `typing.Mapping[K, V]` (converts to a dict).\n  - `typing.TypedDict`.\n  - _attrs_ classes with simple attributes and the usual `__init__`.\n\n    - Simple attributes are attributes that can be assigned unstructured data,\n      like numbers, strings, and collections of unstructured data.\n\n  - All _attrs_ classes and dataclasses with the usual `__init__`, if their complex attributes have type metadata.\n  - `typing.Union` s of supported _attrs_ classes, given that all of the classes have a unique field.\n  - `typing.Union` s of anything, given that you provide a disambiguation function for it.\n  - Custom converters for any type can be registered using `register_structure_hook`.\n\n_cattrs_ comes with preconfigured converters for a number of serialization libraries, including json, msgpack, cbor2, bson, yaml and toml.\nFor details, see the [cattrs.preconf package](https://catt.rs/en/stable/preconf.html).\n\n## Design Decisions\n\n_cattrs_ is based on a few fundamental design decisions.\n\n- Un/structuring rules are separate from the models.\n  This allows models to have a one-to-many relationship with un/structuring rules, and to create un/structuring rules for models which you do not own and you cannot change.\n  (_cattrs_ can be configured to use un/structuring rules from models using the [`use_class_methods` strategy](https://catt.rs/en/latest/strategies.html#using-class-specific-structure-and-unstructure-methods).)\n- Invent as little as possible; reuse existing ordinary Python instead.\n  For example, _cattrs_ did not have a custom exception type to group exceptions until the sanctioned Python [`exceptiongroups`](https://docs.python.org/3/library/exceptions.html#ExceptionGroup).\n  A side-effect of this design decision is that, in a lot of cases, when you're solving _cattrs_ problems you're actually learning Python instead of learning _cattrs_.\n- Refuse the temptation to guess.\n  If there are two ways of solving a problem, _cattrs_ should refuse to guess and let the user configure it themselves.\n\nA foolish consistency is the hobgoblin of little minds so these decisions can and are sometimes broken, but they have proven to be a good foundation.\n\n## Additional documentation and talks\n\n- [On structured and unstructured data, or the case for cattrs](https://threeofwands.com/on-structured-and-unstructured-data-or-the-case-for-cattrs/)\n- [Why I use attrs instead of pydantic](https://threeofwands.com/why-i-use-attrs-instead-of-pydantic/)\n- [cattrs I: un/structuring speed](https://threeofwands.com/why-cattrs-is-so-fast/)\n- [Python has a macro language - it's Python (PyCon IT 2022)](https://www.youtube.com/watch?v=UYRSixikUTo)\n- [Intro to cattrs 23.1](https://threeofwands.com/intro-to-cattrs-23-1-0/)\n\n## Credits\n\nMajor credits to Hynek Schlawack for creating [attrs](https://attrs.org) and its predecessor, [characteristic](https://github.com/hynek/characteristic).\n\n_cattrs_ is tested with [Hypothesis](http://hypothesis.readthedocs.io/en/latest/), by David R. MacIver.\n\n_cattrs_ is benchmarked using [perf](https://github.com/haypo/perf) and [pytest-benchmark](https://pytest-benchmark.readthedocs.io/en/latest/index.html).\n\nThis package was created with [Cookiecutter](https://github.com/audreyr/cookiecutter) and the [`audreyr/cookiecutter-pypackage`](https://github.com/audreyr/cookiecutter-pypackage) project template.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Composable complex class support for attrs and dataclasses.",
    "version": "23.2.3",
    "project_urls": {
        "Bug Tracker": "https://github.com/python-attrs/cattrs/issues",
        "Changelog": "https://catt.rs/en/latest/history.html",
        "Documentation": "https://catt.rs/en/stable/",
        "Homepage": "https://catt.rs",
        "Repository": "https://github.com/python-attrs/cattrs"
    },
    "split_keywords": [
        "attrs",
        "dataclasses",
        "serialization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b30dcd4a4071c7f38385dc5ba91286723b4d1090b87815db48216212c6c6c30e",
                "md5": "a31b49378a0a2e5b17c8bc050ea53ac0",
                "sha256": "0341994d94971052e9ee70662542699a3162ea1e0c62f7ce1b4a57f563685108"
            },
            "downloads": -1,
            "filename": "cattrs-23.2.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a31b49378a0a2e5b17c8bc050ea53ac0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 57474,
            "upload_time": "2023-11-30T22:19:19",
            "upload_time_iso_8601": "2023-11-30T22:19:19.163763Z",
            "url": "https://files.pythonhosted.org/packages/b3/0d/cd4a4071c7f38385dc5ba91286723b4d1090b87815db48216212c6c6c30e/cattrs-23.2.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e57c6ccd22658c4bcb3beb3f1c262e1f170cf136e913b122763d0ddd328d284",
                "md5": "555a80a76a06708adc793ceab25326b9",
                "sha256": "a934090d95abaa9e911dac357e3a8699e0b4b14f8529bcc7d2b1ad9d51672b9f"
            },
            "downloads": -1,
            "filename": "cattrs-23.2.3.tar.gz",
            "has_sig": false,
            "md5_digest": "555a80a76a06708adc793ceab25326b9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 610215,
            "upload_time": "2023-11-30T22:19:21",
            "upload_time_iso_8601": "2023-11-30T22:19:21.117964Z",
            "url": "https://files.pythonhosted.org/packages/1e/57/c6ccd22658c4bcb3beb3f1c262e1f170cf136e913b122763d0ddd328d284/cattrs-23.2.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-30 22:19:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "python-attrs",
    "github_project": "cattrs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "cattrs"
}
        
Elapsed time: 0.14666s