Python 3.7 provides new dataclasses
which have predefined special functions.
From an overview point, dataclasses
and SimpleNamespace
both provide nice data encapsulating facility.
@dataclass
class MyData:
name:str
age: int
data_1 = MyData(name = 'JohnDoe' , age = 23)
data_2 = SimpleNamespace(name = 'JohnDoe' , age = 23)
A lot of times I use SimpleNamespace
just to wrap data and move it around.
I even subclass it to add special functions:
from types import SimpleNamespace
class NewSimpleNameSpace(SimpleNamespace):
def __hash__(self):
return some_hashing_func(self.__dict__)
For my question:
SimpleNamespace
and dataclasses
?SimpleNamespace
?dataclasses
cater to?Python introduced the dataclass in version 3.7 (PEP 557). The dataclass allows you to define classes with less code and more functionality out of the box.
SimpleNamespace. A simple object subclass that provides attribute access to its namespace, as well as a meaningful repr. Unlike object , with SimpleNamespace you can add and remove attributes. If a SimpleNamespace object is initialized with keyword arguments, those are directly added to the underlying namespace.
A dataclass is a Python module with which user-defined classes can be decorated and can be exclusively used to store data/attributes in Python. All these days we never had classes in python just to store attributes like we do in other languages.
Dataclasses is much more like namedtuple
and the popular attrs package than SimpleNamespace
(which isn't even mentioned in the PEP). They serve two different intended purposes.
Dataclasses
__init__
, __hash__
, __eq__
, and many more)__slots__
and methodsSimpleNamespace
__slots__
From the SimpleNamespace
documentation:
SimpleNamespace may be useful as a replacement for
class NS: pass
. However, for a structured record type usenamedtuple()
instead.
Since @dataclass
is supposed to replace a lot of the use cases of namedtuple
, named records/structs should be done with @dataclass
, not SimpleNamespace
.
You may also want to look at this PyCon talk by Raymond Hettinger, where he goes into the backstory of @dataclass
and it's use.
The short answer is that this is all covered by PEP 557. Taking your questions slightly out of order...
The PEP is quite clear that they are not a replacement and expect the other solutions to have their own place.
Like any other design decision, you'll therefore need to decide exactly what features you care about. If that includes the following, you definitely don't want dataclasses.
Where is it not appropriate to use Data Classes?
API compatibility with tuples or dicts is required. Type validation beyond that provided by PEPs 484 and 526 is required, or value validation or conversion is required.
That said, the same is true for SimpleNameSpace, so what else can we look at to decide? Let's take a closer look at the extra features provided by dataclasses...
The existing definition of SimpleNameSpace is as follows:
A simple object subclass that provides attribute access to its namespace, as well as a meaningful repr.
The python docs then go on to say that it provides a simple __init__
, __repr__
and __eq__
implementation. Comparing this to PEP 557, dataclasses also give you options for:
Clearly, then, you should use dataclasses if you care about ordering or immutability (or need the niche hashing control).
None that I can see, though you could argue that the initial "why?" covers other use cases.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With