Skip to main content
======
cattrs
======


.. image:: https://img.shields.io/pypi/v/cattrs.svg
:target: https://pypi.python.org/pypi/cattrs

.. image:: https://img.shields.io/travis/Tinche/cattrs.svg
:target: https://travis-ci.org/Tinche/cattrs

.. image:: https://readthedocs.org/projects/cattrs/badge/?version=latest
:target: https://cattrs.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

.. image:: https://img.shields.io/pypi/pyversions/cattrs.svg
:target: https://github.com/Tinche/cattrs
:alt: Supported Python versions

.. image:: https://codecov.io/gh/Tinche/cattrs/branch/master/graph/badge.svg
:target: https://codecov.io/gh/Tinche/cattrs

----

``cattrs`` is an open source Python library for structuring and unstructuring
data. ``cattrs`` works best with ``attrs`` classes 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.

.. doctest::

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

``cattrs`` works well with ``attrs`` classes out of the box.

.. doctest::

>>> import attr, cattr
>>>
>>> @attr.s(slots=True, frozen=True) # 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.

.. doctest::

>>> from enum import unique, Enum
>>> from typing import List, Optional, Sequence, Union
>>> from cattr import structure, unstructure
>>> import attr
>>>
>>> @unique
... class CatBreed(Enum):
... SIAMESE = "siamese"
... MAINE_COON = "maine_coon"
... SACRED_BIRMAN = "birman"
...
>>> @attr.s
... class Cat:
... breed: CatBreed = attr.ib()
... names: Sequence[str] = attr.ib()
...
>>> @attr.s
... class DogMicrochip:
... chip_id = attr.ib()
... time_chipped: float = attr.ib()
...
>>> @attr.s
... class Dog:
... cuteness: int = attr.ib()
... chip: Optional[DogMicrochip] = attr.ib()
...
>>> 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://cattrs.readthedocs.io.
* Python versions supported: 2.7, 3.5 and up.


Features
--------

* Converts structured data into unstructured data, recursively:

* ``attrs`` classes 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 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``.

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_, by Victor Stinner.

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _attrs: https://github.com/hynek/attrs
.. _characteristic: https://github.com/hynek/characteristic
.. _Hypothesis: http://hypothesis.readthedocs.io/en/latest/
.. _perf: https://github.com/haypo/perf
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage



=======
History
=======

0.5.0 (UNRELEASED)
------------------

* structure/unstructure now supports using functions as well as classes for deciding the appropriate function.
* added `Converter.register_structure_hook_func`, to register a function instead of a class for determining handler func.
* added `Converter.register_unstructure_hook_func`, to register a function instead of a class for determining handler func.
* vendored typing is no longer needed, nor provided.
* Attributes with default values can now be structured if they are missing in the input.
(`#15 https://github.com/Tinche/cattrs/pull/15`_)
* `Optional` attributes can no longer be structured if they are missing in the input.
In other words, this no longer works:

.. code-block:: python

@attr.s
class A:
a: Optional[int] = attr.ib()

>>> cattr.structure({}, A)


0.4.0 (2017-07-17)
------------------

* `Converter.loads` is now `Converter.structure`, and `Converter.dumps` is now `Converter.unstructure`.
* Python 2.7 is supported.
* Moved ``cattr.typing`` to ``cattr.vendor.typing`` to support different vendored versions of typing.py for Python 2 and Python 3.
* Type metadata can be added to ``attrs`` classes using ``cattr.typed``.


0.3.0 (2017-03-18)
------------------

* Python 3.4 is no longer supported.
* Introduced ``cattr.typing`` for use with Python versions 3.5.2 and 3.6.0.
* Minor changes to work with newer versions of ``typing``.

* Bare Optionals are not supported any more (use ``Optional[Any]``).

* Attempting to load unrecognized classes will result in a ValueError, and a helpful message to register a loads hook.
* Loading ``attrs`` classes is now documented.
* The global converter is now documented.
* ``cattr.loads_attrs_fromtuple`` and ``cattr.loads_attrs_fromdict`` are now exposed.


0.2.0 (2016-10-02)
------------------

* Tests and documentation.

0.1.0 (2016-08-13)
------------------

* First release on PyPI.


Release files for cattrs 0.5.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for cattrs 0.5.0
File Size Uploaded
cattrs-0.5.0.tar.gz 36.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for cattrs 0.5.0
File Interpreter ABI Platform
cattrs-0.5.0-py2.py3-none-any.whl Python 2, Python 3 none any Details

Total release size: 92.5 kB

Release files / cattrs-0.5.0.tar.gz

Download URL cattrs-0.5.0.tar.gz
Size 36.2 kB
Tags Source
SHA-256 checksum
How to use checksums
30e9818de6deb26ca75cbba080b0c430107b9ef2ca0f766528d6f70580b73592
BLAKE2b-256 checksum
How to use checksums
6fd52f3b2b691341f9efc6f1d177377ac56aaf889d1ec731b5d46332ce37d3de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / cattrs-0.5.0-py2.py3-none-any.whl

Download URL cattrs-0.5.0-py2.py3-none-any.whl
Size 56.2 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
a2949850626ab422c89309e202cccb3f374188842e1e6b01721f256d90b8b87a
BLAKE2b-256 checksum
How to use checksums
cd23d9bf3f86cedd34b214541fbff71add6807c56b2268b3c0030c13e6f75c44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

26.1.0

2 release files

25.2.0

2 release files

25.1.0

2 release files

24.1.3

2 release files

24.1.2

2 release files

24.1.1

2 release files

24.1.0

2 release files

23.2.3

2 release files

23.2.2

2 release files

23.2.1

2 release files

23.2.0

2 release files

23.1.1

2 release files

23.1.0

2 release files

1.9.0

2 release files

1.8.0

2 release files

1.7.1

2 release files

1.7.0

2 release files

1.6.0

2 release files

1.5.0

2 release files

1.4.0

2 release files

1.3.0

2 release files

1.2.0

2 release files

1.1.2

2 release files

1.1.1

2 release files

1.1.0

2 release files

1.0.0

2 release files

0.9.2

2 release files

0.9.0

2 release files

0.8.1

2 release files

0.8.0

2 release files

0.7.0

2 release files

0.6.0

2 release files

This release

0.5.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page