Skip to main content

Implementation of Slotted Data Classes compatible with Python 2.7 and 3.7+.

Project description

https://github.com/brunonicko/datta/workflows/MyPy/badge.svg https://github.com/brunonicko/datta/workflows/Lint/badge.svg https://github.com/brunonicko/datta/workflows/Tests/badge.svg https://readthedocs.org/projects/datta/badge/?version=stable https://img.shields.io/github/license/brunonicko/datta?color=light-green https://static.pepy.tech/personalized-badge/datta?period=total&units=international_system&left_color=grey&right_color=brightgreen&left_text=Downloads https://img.shields.io/pypi/pyversions/datta?color=light-green&style=flat

Overview

Immutable data structures based on estruttura.

Examples

>>> from datta import Data, attribute
>>> class Point(Data):
...     x = attribute(types=int)
...     y = attribute(types=int)
...
>>> point_a = Point(3, 4)
>>> point_a
Point(3, 4)
>>> point_b = point_a.update(x=30, y=40)
>>> point_b
Point(30, 40)
>>> from datta import Data, attribute, list_attribute
>>> from tippo import Literal
>>> class Vehicle(Data):
...     kind = attribute(types=str)
...
>>> class Garage(Data):
...     vehicles = list_attribute(types=Vehicle)
...     gate = attribute(default="automatic", types=str)  # type: Literal["automatic", "manual"]
...
>>> garage = Garage([Vehicle("bicycle"), Vehicle("car")], gate="manual")
>>> garage
Garage([Vehicle('bicycle'), Vehicle('car')], gate='manual')
>>> garage.serialize() == {"vehicles": [{"kind": "bicycle"}, {"kind": "car"}], "gate": "manual"}
True
>>> Garage.deserialize({"vehicles": [{"kind": "bicycle"}, {"kind": "car"}], "gate": "manual"}) == garage
True
>>> from datta import list_cls
>>> MyStrList = list_cls(converter=str, qualified_name="MyStrList")
>>> my_str_list = MyStrList([1, 2.2, None, True])
>>> my_str_list
MyStrList(['1', '2.2', 'None', 'True'])

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

datta-1.0.1.tar.gz (12.3 kB view hashes)

Uploaded Source

Built Distribution

datta-1.0.1-py2.py3-none-any.whl (14.8 kB view hashes)

Uploaded Python 2 Python 3

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