All Projects → Tinche → Cattrs

Tinche / Cattrs

Licence: mit
Complex custom class converters for attrs.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Cattrs

Inquiry Deprecated
[DEPRECATED]: Prefer Room by Google, or SQLDelight by Square.
Stars: ✭ 264 (-7.69%)
Mutual labels:  serialization, deserialization
tyson
A TypeScript serialization/deserialization library to convert objects to/from JSON
Stars: ✭ 25 (-91.26%)
Mutual labels:  serialization, deserialization
VSerializer
A library to serialize and deserialize objects with minimum memory usage.
Stars: ✭ 25 (-91.26%)
Mutual labels:  serialization, deserialization
parco
🏇🏻 generalist, fast and tiny binary parser and compiler generator, powered by Go 1.18+ Generics
Stars: ✭ 57 (-80.07%)
Mutual labels:  serialization, deserialization
AvroConvert
Apache Avro serializer for .NET
Stars: ✭ 44 (-84.62%)
Mutual labels:  serialization, deserialization
nason
🗜 Ultra tiny serializer / encoder with plugin-support. Useful to build binary files containing images, strings, numbers and more!
Stars: ✭ 30 (-89.51%)
Mutual labels:  serialization, deserialization
kafka-protobuf-serde
Serializer/Deserializer for Kafka to serialize/deserialize Protocol Buffers messages
Stars: ✭ 52 (-81.82%)
Mutual labels:  serialization, deserialization
serde
🚝 (unmaintained) A framework for defining, serializing, deserializing, and validating data structures
Stars: ✭ 49 (-82.87%)
Mutual labels:  serialization, deserialization
dataconf
Simple dataclasses configuration management for Python with hocon/json/yaml/properties/env-vars/dict support.
Stars: ✭ 40 (-86.01%)
Mutual labels:  serialization, deserialization
hapic
Input/Output/Error management for your python controllers with Swagger doc generation
Stars: ✭ 18 (-93.71%)
Mutual labels:  serialization, deserialization
avrow
Avrow is a pure Rust implementation of the avro specification https://avro.apache.org/docs/current/spec.html with Serde support.
Stars: ✭ 27 (-90.56%)
Mutual labels:  serialization, deserialization
moonwlker
Jackson JSON without annotation.
Stars: ✭ 14 (-95.1%)
Mutual labels:  serialization, deserialization
NBT
A java implementation of the NBT protocol, including a way to implement custom tags.
Stars: ✭ 128 (-55.24%)
Mutual labels:  serialization, deserialization
CodableWrapper
@codec("encoder", "decoder") var cool: Bool = true
Stars: ✭ 143 (-50%)
Mutual labels:  serialization, deserialization
cattrs
Complex custom class converters for attrs.
Stars: ✭ 565 (+97.55%)
Mutual labels:  serialization, deserialization
dataclasses-jsonschema
JSON schema generation from dataclasses
Stars: ✭ 145 (-49.3%)
Mutual labels:  serialization, deserialization
json struct
json_struct is a single header only C++ library for parsing JSON directly to C++ structs and vice versa
Stars: ✭ 279 (-2.45%)
Mutual labels:  serialization, deserialization
sexp-grammar
Invertible parsing for S-expressions
Stars: ✭ 28 (-90.21%)
Mutual labels:  serialization, deserialization
jzon
A correct and safe JSON parser.
Stars: ✭ 78 (-72.73%)
Mutual labels:  serialization, deserialization
amq-protocol
AMQP 0.9.1 protocol serialization and deserialization implementation for Ruby (2.0+)
Stars: ✭ 47 (-83.57%)
Mutual labels:  serialization, deserialization

====== cattrs

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

.. image:: https://github.com/Tinche/cattrs/workflows/CI/badge.svg :target: https://github.com/Tinche/cattrs/actions?workflow=CI

.. 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

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg :target: https://github.com/ambv/black


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.

.. code-block:: pycon

>>> 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.

.. code-block:: pycon

>>> 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.

.. code-block:: pycon

>>> 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 <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: 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 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_ and pytest-benchmark_.

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 .. _pytest-benchmark: https://pytest-benchmark.readthedocs.io/en/latest/index.html .. _Cookiecutter: https://github.com/audreyr/cookiecutter .. _audreyr/cookiecutter-pypackage: https://github.com/audreyr/cookiecutter-pypackage

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].