A Python library that allows you to define abstract properties for dataclasses, bridging the gap between abstract base classes (ABCs) and dataclasses.
Project description
Dataclass-ABC
Dataclass-ABC is a Python library that bridges the gap between abstract base classes (ABCs) and dataclasses. It allows you to define and automatically implement abstract properties in dataclasses when these properties are overridden by fields.
Features
- Abstract properties: Implement abstract properties by inheritence using dataclasses.
- Trait Behavior: Allows to reproduce Trait-like behavior (as in Scala or Rust) using Python ABC classes.
Installation
Install Dataclass-ABC using pip:
pip install dataclassabc
Usage
The dataclassabc decorator enables the use of abstract properties within dataclasses.
It resolves abstract properties defined in an abstract base class (ABC) and enforces their implementation through fields in the derived dataclass.
Example
Here's how you can define an abstract property in an abstract class and implement it in a dataclass:
from abc import ABC, abstractmethod
from dataclassabc import dataclassabc
# Define an abstract base class with an abstract property
class A(ABC):
@property
@abstractmethod
def name(self) -> str: ...
# Use the dataclassabc decorator to implement the abstract property in a dataclass
@dataclassabc(frozen=True)
class B(A):
# Implementing the abstract property 'name'
name: str
# Works as expected
b1 = B(name='A')
# TypeError: B.__init__() missing 1 required positional argument: 'name'
b2 = B()
Define mutable variables
The dataclassabc library also supports defining mutable abstract properties. Use the @property decorator alongside a setter to define mutable properties in the abstract class.
from abc import ABC, abstractmethod
from dataclassabc import dataclassabc
class A(ABC):
@property
@abstractmethod
def name(self) -> str: ...
@name.setter
@abstractmethod
def name(self, val: str): ...
@dataclassabc
class B(A):
name: str
Comparison with the standard dataclass
Here are known issues when using the standard dataclass decorator in combination with abc library:
-
TypeError: "Can't instantiate abstract class" when trying to override an abstract property with a dataclass field.
from abc import ABC, abstractmethod from dataclasses import dataclass class A(ABC): @property @abstractmethod def name(self) -> str: ... @dataclass(frozen=True) class B(A): name: str # TypeError: Can't instantiate abstract class B without an implementation for abstract method 'name' b = B(name='A')
-
Unexpected Default Value
<property object at ...>when using dataclass optionslots=True.from abc import ABC, abstractmethod from dataclasses import dataclass class A(ABC): @property @abstractmethod def name(self) -> str: ... @dataclass(slots=True) class B(A): name: str # No exception is raised when name is not provided b = B() # The output will be <property object at ...> print(b.name)
-
TypeError: "Non-default argument follows default argument" when using dataclass option
slots=True.from abc import ABC, abstractmethod from dataclasses import dataclass class A(ABC): @property @abstractmethod def name(self) -> str: ... @dataclass(slots=True) class B(A): name: str age: int # TypeError: non-default argument 'age' follows default argument 'name' b = B(age=12, name='A')
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dataclassabc-0.0.16.tar.gz.
File metadata
- Download URL: dataclassabc-0.0.16.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad5becbba9ab725b2d4d7ec91d8d0ddb7fcbb973f90067f958b54d244916721c
|
|
| MD5 |
f8da1f16897e39e21e531c2dbc6d34e0
|
|
| BLAKE2b-256 |
75d489140d834dc7c29f75cdbafdf74c43f171baf8ef652393b4accd062d210e
|
File details
Details for the file dataclassabc-0.0.16-py3-none-any.whl.
File metadata
- Download URL: dataclassabc-0.0.16-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3536322fc395e8a221acf2a26846a57533361a95a1c252df95f80122ded78ff0
|
|
| MD5 |
81f14f5608e010fea676f040fffa57fd
|
|
| BLAKE2b-256 |
9664020329f9754c6144ee528e2307eef3aefd0a574821376652d728068cfaf8
|