I have a dataclass such as this one:
@dataclasses.dataclass(frozen=True)
class MyClass:
my_field: str
other_field: str
and I have a complicated function for computing a default value for my_field
that depends on other_field
:
def get_default_value_for_my_field(other_field: str) -> str:
... # lots of code
Is there a way to:
- Call
get_default_value_for_my_field(other_field)
and initializemy_field
from its result if no value formy_field
is passed at initialization, otherwise initializemy_field
from the passed value; - Keep
MyClass
frozen; - Convince
pytype
thatMyClass.my_field
has typestr
rather thanstr | None
; - Convince
pytype
thatMyClass.__init__()
has a parametermy_field: str | None = None
using dataclasses, or am I better off switching to a plain class?
I don't think that all those conditions are possible using daclasses. I used to have the same problem and found a package that can actually solve all the above very easily. The package is call attrs, and if you use dataclasses you can see it does the same things but add some very cool features, without disturbing the class or similar as pydantic does. It work the same as a dataclass and you probably will need to change very little of your code to move from dataclass to attrs, but is true it add a new dependency.