An extremely flexible and configurable data model conversion library
Project description
Adaptix
An extremely flexible and configurable data model conversion library.
TL;DR
Install
pip install adaptix
Use
from dataclasses import dataclass
from adaptix import Retort
@dataclass
class Book:
title: str
price: int
author: str = "Unknown author"
data = {
"title": "Fahrenheit 451",
"price": 100,
}
retort = Retort()
book = retort.load(data, Book)
assert book == Book(title="Fahrenheit 451", price=100)
assert retort.dump(book) == data
Use cases
- Validation and transformation of received data for your API.
- Config loading/dumping via codec that produces/takes dict.
- Storing JSON in a database and representing it as a model inside the application code.
- Creating API clients that convert a model to JSON sending to the server.
- Persisting entities at cache storage.
- Implementing fast and primitive ORM.
Advantages
- Sane defaults for JSON processing, no configuration is needed for simple cases.
- Separated model definition and rules of conversion that allow preserving SRP and have different representations for one model.
- Speed. It is one of the fastest data parsing and serialization libraries.
- There is no forced model representation, adaptix can adjust to your needs.
- Support dozens of types,
including different model kinds:
@dataclass
,TypedDict
,NamedTuple
, andattrs
- Working with self-referenced data types (such as linked lists or trees).
- Saving path where an exception is raised (including unexpected errors).
- Easy integration with Sentry, Datadog, and other monitoring systems.
- Machine-readable errors that could be dumped.
- Support for user-defined generic models.
- Automatic name style conversion (e.g.
snake_case
tocamelCase
). - Predicate system that allows to concisely and precisely override some behavior.
- Disabling additional checks to speed up data loading from trusted sources.
- No auto casting by default. The loader does not try to guess value from plenty of input formats.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
adaptix-3.0.0a5.tar.gz
(74.0 kB
view hashes)
Built Distribution
adaptix-3.0.0a5-py3-none-any.whl
(97.2 kB
view hashes)
Close
Hashes for adaptix-3.0.0a5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f890125e5cdef1d41844466f2556bbc86d3a79f4e06cd1fd22f3879ce9eb8b9a |
|
MD5 | 84e729c66ebbc52be8242bebcdf1d8f5 |
|
BLAKE2b-256 | e0c9bf561fcacce162a672c74adcfce24fd8cdfe408b09fc193f4e426d525e34 |