Skip to main content

Autogenerate mappings between dataclasses

Project description

pypi version supported Python version licence Read the documentation at https://dataclass-mapper.readthedocs.io/en/latest/ build status Code coverage

Writing mapper methods between two similar dataclasses is boring, need to be actively maintained and are error-prone. Much better to let this library auto-generate them for you.

The focus of this library is:

  • Concise and easy syntax:

    • using it has to be a lot less overhead than writing the mappers by hand

    • trivial mappings should not require code

    • identical syntax for mapping between dataclasses, Pydantic and SQLAlchemy models

  • Safety:

    • using this library must give equal or more type safety than writing the mappers by hand

    • the types between source and target classes must matches (including optional checks)

    • all target fields must be actually initialized

    • mappings cannot reference non-existing fields

    • in case of an error a clean exception must be raised

  • Performance:

    • mapping an object using this library must be the same speed than mapping using a custom mapper function

    • the type checks shouldn’t slow down the program

    • because of the first two points, all type checks and the generation of the mapper functions happen during the definition of the classes

Motivation

A couple of example usecases, that show why this library might be useful.

  • Given an API with multiple, different interfaces (e.g. different API versions), that are all connected to a common algorithm with some common datamodel. All the different API models needs to be mapped to the common datamodel, and afterwards mapped back to the API model.

  • Given an API that has a POST and a GET endpoint. Both models (POST request body model and GET response body model) are almost the same, but there are some minor differences. E.g. response model has an additional id parameter. You need a way of mapping the request model to a response model.

Installation

dataclass-mapper can be installed using:

pip install dataclass-mapper
# or for Pydantic support
pip install 'dataclass-mapper[pydantic]'
# or for SQLAlchemy support
pip install 'dataclass-mapper[sqlalchemy]'

Example

We have the following target data structure, a class called Person.

>>> from dataclasses import dataclass

>>> @dataclass
... class Person:
...     first_name: str
...     second_name: str
...     age: int

We want to have a mapper from the source data structure, a class called ContactInfo. Notice that the attribute second_name of Person is called surname in ContactInfo. Other than that, all the attribute names are the same.

Instead of writing a mapper function by hand, you can let it autogenerate one using this library:

>>> from dataclass_mapper import map_to, mapper
>>>
>>> @mapper(Person, {"second_name": "surname"})
... @dataclass
... class ContactInfo:
...     first_name: str
...     surname: str
...     age: int
>>>
>>> contact = ContactInfo(first_name="Henry", surname="Kaye", age=42)
>>> map_to(contact, Person)
Person(first_name='Henry', second_name='Kaye', age=42)

The dataclass-mapper library autogenerated a mapper, that can be used with the map_to function. All we had to specify was the name of the target class, and optionally specify which fields map to which other fields. Notice that we only had to specify that the second_name field has to be mapped to surname, all other fields were mapped automatically because the field names didn’t change.

And the dataclass-mapper library will perform a lot of checks around this mapping. It will check if the data types match, if some fields would be left uninitialized, etc.

Features

The current version has support for:

Demo project

We maintain a small demo project, whichs shows some of the interworkings of the library together with a FastAPI API and SQLAlchemy ORM: todo-app-demo.

Contributing

See CONTRIBUTING.rst.

License

The project is released under the MIT license.

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

dataclass_mapper-2.0.0a4.tar.gz (29.7 kB view details)

Uploaded Source

Built Distribution

dataclass_mapper-2.0.0a4-py3-none-any.whl (47.1 kB view details)

Uploaded Python 3

File details

Details for the file dataclass_mapper-2.0.0a4.tar.gz.

File metadata

  • Download URL: dataclass_mapper-2.0.0a4.tar.gz
  • Upload date:
  • Size: 29.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for dataclass_mapper-2.0.0a4.tar.gz
Algorithm Hash digest
SHA256 30c4ea7607285d51c82e06d25b25c08b636afd328df23d830572d88f6e6e95af
MD5 ad3984fa03b5aa478b562b9f296e0764
BLAKE2b-256 84957390e98be9f4fe44706ea1ae471f5fdabec3d9707bd9ad4a29a6b490bad8

See more details on using hashes here.

File details

Details for the file dataclass_mapper-2.0.0a4-py3-none-any.whl.

File metadata

File hashes

Hashes for dataclass_mapper-2.0.0a4-py3-none-any.whl
Algorithm Hash digest
SHA256 6728de16d95e14ca4b10a09f8350563c67d6b3ce82a97fc34727b9620d9ff644
MD5 468824ac884bfeeba04414c628ab8222
BLAKE2b-256 9da942c59b0987acef72cec3b16156b8618f9f3c64ed07998e057b2a6f0698d4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page