Skip to main content

Slightly improved, backward compatible dataclasses

Project description

The Python built-in module dataclasses is almost perfect.

datacls is a thin wrapper around dataclasses, completely backward-compatible, that makes common use cases a little easier.


@datacls.mutable is exactly like @dataclasses.dataclass() except that the resulting dataclass has four new methods:

The new methods are only added if they do not exist on the target dataclass, so it should be impossible for datacls to override or shadow user methods or members by mistake.


@datacls.immutable, or just @datacls, is exactly like datacls.mutable except frozen=True by default, so members can’t be changed after construction (without deliberately subverting the immutability).


datacls.field() is just like dataclasses.field() except the very common default_factory argument is now also the first and only positional parameter.

datacls.make_dataclass() is just like dataclasses.make_dataclass() except that the class created also has the four new methods listed above.

Usage examples

import datacls
from typing import Dict

@datacls
class One:
    one: str = 'one'
    two: int = 2
    three: Dict = datacls.field(dict)

#
# Three new instance methods: asdict(), astuple(), replace()
#
o = One()
assert o.asdict() == {'one': 'one', 'two': 2, 'three': {}}

# Same as:
#
# import dataclasses
#
# assert dataclasses.asdict(o) == {'one': 'one', 'two': 2, 'three': {}}

assert o.astuple() == ('one', 2, {})

o2 = o.replace(one='seven', three={'nine': 9})
assert o2 == One('seven', 2, {'nine': 9})

#
# One new class method: fields()
#
assert [f.name for f in One.fields()] == ['one', 'two', 'three']

#
# @datacls is immutable: use @datacls.mutable for mutable classes
#
try:
    o.one = 'three'
except AttributeError:
    pass
else:
    raise AttributeError('Was mutable!')

@datacls.mutable
class OneMutable:
    one: str = 'one'
    two: int = 2
    three: Dict = datacls.field(dict)

om = OneMutable()
om.one = 'three'
assert str(om) == "OneMutable(one='three', two=2, three={})"

#
# These four new methods won't break your old dataclass by mistake:
#
@datacls
class Overloads:
    one: str = 'one'
    asdict: int = 1
    astuple: int = 1
    fields: int = 1
    replace: int = 1

o = Overloads()

assert datacls.astuple(ov) == ('one', 1, 1, 1, 1)

assert ov.one == 'one'
assert ov.asdict == 1
assert ov.astuple == 1
assert ov.fields == 1
assert ov.replace == 1

# You can still access the methods as functions on `datacls`:
assert (
    datacls.asdict(ov) ==
    {'asdict': 1, 'astuple': 1, 'fields': 1, 'one': 'one', 'replace': 1}
)

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

datacls-4.4.1.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

datacls-4.4.1-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file datacls-4.4.1.tar.gz.

File metadata

  • Download URL: datacls-4.4.1.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.8 Darwin/21.6.0

File hashes

Hashes for datacls-4.4.1.tar.gz
Algorithm Hash digest
SHA256 bf8f88d1a5d6fb8fac733bb558c2c55703b4498cf14732e15c28521a7294b683
MD5 1cc7dacfa70443ac9d0c538112439122
BLAKE2b-256 c6b55905ecb71dc299162161972d99fad914deb50527a617ae75c532c1eebeca

See more details on using hashes here.

File details

Details for the file datacls-4.4.1-py3-none-any.whl.

File metadata

  • Download URL: datacls-4.4.1-py3-none-any.whl
  • Upload date:
  • Size: 4.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.8 Darwin/21.6.0

File hashes

Hashes for datacls-4.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 42f24894209681b67ed8db0664c502aab775fda895dc1ea4f417c137fbfad7a8
MD5 b27742b7bb22144839b5e4c243483273
BLAKE2b-256 faddb3d5c0d1b6b277de63f606b59c702b83667999cc640a554816dc11e82b25

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