Skip to main content

🗂 Take the edge off `dataclass` 🗂

Project description

🗂 datacls: take the edge off dataclass 🗂

dataclasses is almost perfect.

datacls is a tiny, thin wrapper around dataclass.dataclasses making it a bit more self-contained, reflective, and saving a bit of typing.

datacls is exactly like dataclass, except:

  • Adds three new instance methods: asdict(), astuple(), replace(), and one new class method, fields(), all taken from the dataclasses module

  • xmod-ed for less cruft (so datacls is the same as datacls.dataclass)

  • The default class is datacls.immutable where frozen=True.

Example

import datacls

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

# `One` has three instance methods: asdict(), astuple(), replace()

o = One()
assert o.asdict() == {'one': 'one', 'two': 2, 'three': {}}

import dataclasses
assert dataclasses.asdict(o) == o.asdict()

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

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

# `One` has one new class method: fields()

assert [f.name for f in One.fields()] == ['one', 'two', 'three']

# @datacls is immutable.

try:
    o.one = 'three'
except AttributeError:
    pass
else:
    raise AttributeError('Was mutable!')

# Usec @datacls.mutable or @datacls(frozen=False)
# for mutable classes

@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 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}
)

API Documentation

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.7.1.tar.gz (3.9 kB view details)

Uploaded Source

Built Distribution

datacls-4.7.1-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: datacls-4.7.1.tar.gz
  • Upload date:
  • Size: 3.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.10.11 Darwin/21.6.0

File hashes

Hashes for datacls-4.7.1.tar.gz
Algorithm Hash digest
SHA256 69ac012a6d5c25d88ffbc6056a1525d15a668960df41a11945719fd9827784c1
MD5 20716e1c3818be37c24ba174407f5703
BLAKE2b-256 a65a71fc58a2e806754480bf8b32080451fefdcc779225d9c5441b13e917ba4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: datacls-4.7.1-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.10.11 Darwin/21.6.0

File hashes

Hashes for datacls-4.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f025fe964d619d4fa8a4a30dab05a771ff8c95a7a6a61ff0847bd5a2d9c8a244
MD5 1135ae66fc467aef08ce45821333243e
BLAKE2b-256 d78ea534fff026859dfa8279d32cb5c24be317965dd963e6cb378193c3b29c9d

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