In Python 3.10+ you can use slots=True with a dataclass to make it more memory-efficient:

from dataclasses import dataclass

@dataclass(slots=True)
class Point:
    x: int = 0
    y: int = 0

This way you can set default field values as well.

Answer from Eugene Yarmash on Stack Overflow
🌐
Python
docs.python.org › 3 › library › dataclasses.html
dataclasses — Data Classes
Added in version 3.11. fields may optionally specify a default value, using normal Python syntax: @dataclass class C: a: int # 'a' has no default value b: int = 0 # assign a default value for 'b' In this example, both ...
🌐
Reddit
reddit.com › r/python › full support for slots in dataclasses
r/Python on Reddit: Full support for slots in dataclasses
January 30, 2023 -

Many years ago I've made a small library to provide the __slots__ attribute to dataclasses: dataslots. It's stable, well-tested, and supports type checking. Additional features to python implementation:

  • Support for python 3.7 - 3.12 (python 3.10/3.11 added base support for slots).

  • Support for dynamic assignment for new variables (__dict__ in __slots__).

  • Pickling frozen dataclasses (fixed in python 3.10).

  • Support for data descriptors and slots simultaneously.

If you are using older versions of python or need more from dataclasses give it a try.

Github: https://github.com/starhel/dataslots PyPI: https://pypi.org/project/dataslots/

🌐
Plain English
python.plainenglish.io › supercharging-python-classes-with-dataclass-and-slots-3557f8b292d4
Supercharging Python Classes with dataclass and Slots | by Khushiyant | Python in Plain English
November 13, 2023 - In the world of Python, when you ... methods. Python's dataclass decorator is here to simplify your life and make your code more readable. In this blog, we'll explore how to combine dataclass with slots to create efficient and readable classes, using practical code examples...
Top answer
1 of 6
70

In Python 3.10+ you can use slots=True with a dataclass to make it more memory-efficient:

from dataclasses import dataclass

@dataclass(slots=True)
class Point:
    x: int = 0
    y: int = 0

This way you can set default field values as well.

2 of 6
56

2021 UPDATE: direct support for __slots__ is added to python 3.10. I am leaving this answer for posterity and won't be updating it.

The problem is not unique to dataclasses. ANY conflicting class attribute will stomp all over a slot:

>>> class Failure:
...     __slots__ = tuple("xyz")
...     x=1
...
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: 'x' in __slots__ conflicts with class variable

This is simply how slots work. The error happens because __slots__ creates a class-level descriptor object for each slot name:

>>> class Success:
...     __slots__ = tuple("xyz")
...
>>>
>>> type(Success.x)
<class 'member_descriptor'>

In order to prevent this conflicting variable name error, the class namespace must be altered before the class object is instantiated such that there are not two objects competing for the same member name in the class:

  • the specified (default) value*
  • the slot descriptor (created by the slots machinery)

For this reason, an __init_subclass__ method on a parent class will not be sufficient, nor will a class decorator, because in both cases the class object has already been created by the time these functions have received the class to alter it.

Current option: write a metaclass

Until such time as the slots machinery is altered to allow more flexibility, or the language itself provides an opportunity to alter the class namespace before the class object is instantiated, our only choice is to use a metaclass.

Any metaclass written to solve this problem must, at minimum:

  • remove the conflicting class attributes/members from the namespace
  • instantiate the class object to create the slot descriptors
  • save references to the slot descriptors
  • put the previously removed members and their values back in the class __dict__ (so the dataclass machinery can find them)
  • pass the class object to the dataclass decorator
  • restore the slots descriptors to their respective places
  • also take into account plenty of corner cases (such as what to do if there is a __dict__ slot)

To say the least, this is an extremely complicated endeavor. It would be easier to define the class like the following- without a default value so that the conflict doesn't occur at all- and then add a default value afterward.

Current option: make alterations after class object instantiation

The unaltered dataclass would look like this:

@dataclass
class C:
    __slots__ = "x"
    x: int

The alteration is straightforward. Change the __init__ signature to reflect the desired default value, and then change the __dataclass_fields__ to reflect the presence of a default value.

from functools import wraps

def change_init_signature(init):
    @wraps(init)
    def __init__(self, x=1):
        init(self,x)
    return __init__

C.__init__ = change_init_signature(C.__init__)

C.__dataclass_fields__["x"].default = 1

Test:

>>> C()
C(x=1)
>>> C(2)
C(x=2)
>>> C.x
<member 'x' of 'C' objects>
>>> vars(C())
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: vars() argument must have __dict__ attribute

It works!

Current option: a setmember decorator

With some effort, a so-called setmember decorator could be employed to automatically alter the class in the manner above. This would require deviating from the dataclasses API in order to define the default value in a location other than inside the class body, perhaps something like:

@setmember(x=field(default=1))
@dataclass
class C:
    __slots__="x"
    x: int

The same thing could also be accomplished through a __init_subclass__ method on a parent class:

class SlottedDataclass:
    def __init_subclass__(cls, **kwargs):
        cls.__init_subclass__()
        # make the class changes here

class C(SlottedDataclass, x=field(default=1)):
    __slots__ = "x"
    x: int

Future possibility: change the slots machinery

Another possibility, as mentioned above, would be for the python language to alter the slots machinery to allow more flexibility. One way of doing this might be to change the slots descriptor itself to store class level data at the time of class definition.

This could be done, perhaps, by supplying a dict as the __slots__ argument (see below). The class-level data (1 for x, 2 for y) could just be stored on the descriptor itself for retrieval later:

class C:
    __slots__ = {"x": 1, "y": 2}

assert C.x.value == 1
assert C.y.value == y

One difficulty: it may be desired to only have a slot_member.value present on some slots and not others. This could be accommodated by importing a null-slot factory from a new slottools library:

from slottools import nullslot

class C:
    __slots__ = {"x": 1, "y": 2, "z": nullslot()}

assert not hasattr(C.z, "value")

The style of code suggested above would be a deviation from the dataclasses API. However, the slots machinery itself could even be altered to allow for this style of code, with accommodation of the dataclasses API specifically in mind:

class C:
    __slots__ = "x", "y", "z"
    x = 1  # 1 is stored on C.x.value
    y = 2  # 2 is stored on C.y.value

assert C.x.value == 1
assert C.y.value == y
assert not hasattr(C.z, "value")

Future possibility: "prepare" the class namespace inside the class body

The other possibility is altering/preparing (synonymous with the __prepare__ method of a metaclass) the class namespace.

Currently, there is no opportunity (other than writing a metaclass) to write code that alters the class namespace before the class object is instantiated, and the slots machinery goes to work. This could be changed by creating a hook for preparing the class namespace beforehand, and making it so that an error complaining about the conflicting names is only produced after that hook has been run.

This so-called __prepare_slots__ hook could look something like this, which I think is not too bad:

from dataclasses import dataclass, prepare_slots

@dataclass
class C:
    __slots__ = ('x',)
    __prepare_slots__ = prepare_slots
    x: int = field(default=1)

The dataclasses.prepare_slots function would simply be a function-- similar to the __prepare__ method-- that receives the class namespace and alters it before the class is created. For this case in particular, the default dataclass field values would be stored in some other convenient place so that they can be retrieved after the slot descriptor objects have been created.


* Note that the default field value conflicting with the slot might also be created by the dataclass machinery if dataclasses.field is being used.

🌐
Towards Data Science
towardsdatascience.com › home › latest › should you use slots? how slots affect your class, and when and how to use them
Should You Use Slots? How Slots Affect Your Class, and When and How to Use Them | Towards Data Science
March 5, 2025 - Yes! Starting from Python 3.10 you can also add slot dataclasses. It’s even easier with dataclasses, just add a single argument to the @dataclass decorator.
🌐
Medium
doziestar.medium.com › speed-upyour-python-classes-with-slot-454e0655a816
Speed Up Your Python classes with slot | by Chidozie C. Okafor | Medium
May 8, 2022 - class PersonSlot: __slots__ = ["first_name", "last_name"] def __init__(self, first_name: str, last_name: str): self.first_name = first_name self.last_name = last_nameif __name__ == "__main__": person = Person("Chidozie", "Okafor") print(person.__dict__) {'first_name': 'Chidozie', 'last_name': 'Okafor'} print(Person.__dict__) {'__module__': '__main__', '__slots__': ['first_name', 'last_name'], '__init__': <function __init__ at 0x10432b140>, '__doc__': None} To avoid repetition of variable names, we can use dataclasses to create a class that will automatically create slots for us.
🌐
Hacker News
news.ycombinator.com › item
Reasons to use dataclass(slots=True) instead of TypedDict - Faster attribute acc... | Hacker News
October 17, 2024 - For me it’s mostly about .attribute being more in line with the rest of the language. Kwargs aside, I find overuse of dicts to clunky in Python · https://wiki.python.org/moin/UsingSlots
Find elsewhere
🌐
Gitlab
gdevops.gitlab.io › tuto_python › versions › 3.10.0 › slots_dataclass › slots_dataclass.html
Slots for data classes — Tuto Python
When you visit any website, it may store or retrieve information on your browser, mostly in the form of cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not usually directly identify ...
🌐
GitHub
github.com › ericvsmith › dataclasses › issues › 28
Support __slots__? · Issue #28 · ericvsmith/dataclasses
July 1, 2017 - The question is: do we even want to support setting __slots__? Is having __slots__ important enough to have this deviation from the "we just add a few dunder methods to your class" behavior? ... Leave it as-is, with @dataclass(slots=True) returning a new class.
Author   ericvsmith
🌐
Trueblade
trueblade.com › blogs › news › python-3-10-new-dataclass-features
Python 3.10: new dataclass features – True Blade Systems Inc
May 10, 2021 - A requirement of specifying __slots__ ... already created. So adding __slots__ requires that a new class be created once @dataclass has computed the __slots__ value. So that's what I did in Python 3.10....
🌐
Real Python
realpython.com › python-data-classes
Data Classes in Python (Guide) – Real Python
March 8, 2024 - For example, if you define Position and Capital as follows: ... from dataclasses import dataclass @dataclass class Position: name: str lon: float = 0.0 lat: float = 0.0 @dataclass class Capital(Position): country: str = 'Unknown' lat: float = 40.0 · Then the order of the fields in Capital will still be name, lon, lat, country. However, the default value of lat will be 40.0. ... I’m going to end this tutorial with a few words about slots.
🌐
Python
wiki.python.org › moin › UsingSlots
UsingSlots - Python Wiki
The Python documentation states that any non-string iterable can be used for the __slots__ declaration. For example, it is possible to use a list, and a user might want to take advantage of the fact that a list is mutable, whereas a tuple is not.
🌐
Towards Data Science
towardsdatascience.com › home › latest › working with python dataclasses and dataclass wizard
Working with Python Dataclasses and Dataclass Wizard | Towards Data Science
January 17, 2025 - As you can see in the code snippet above, the asdict function from the dataclass wizard package converts the AttrType object without requiring a customized dictionary factor function, which can provide cleaner and more Pythonic code for our project! 🔥 · from dataclasses import dataclass from typing import Dict, Optional, List from dataclass_wizard import asdict, json_field @dataclass(slots=True) class ClassA: attr_class_1: Optional[int] = json_field("attr_class_1", default=None) attr_class_2: Optional[int] = json_field("attr_class_2", default=None) _attr3: Optional[int] = json_field("_attr3", default=None, init=False, repr=False, dump=False) instance_a = ClassA(attr_class_1=1, attr_class_2=2) dict_a = asdict(instance_a) print(dict_a)
🌐
PyPI
pypi.org › project › dataslots
Client Challenge
JavaScript is disabled in your browser · Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser
🌐
Hacker News
news.ycombinator.com › item
The problem with dataclasses are: 1) they don’t support __slots__ and default va... | Hacker News
May 15, 2018 - 1) they don’t support __slots__ and default values · 2) type hints aren’t supported yet, and it doesn’t appear they’ll be added to the 3.6 backport
🌐
The New Stack
thenewstack.io › home › python dataclasses: a complete guide to boilerplate‑free objects
Python Dataclasses: A Complete Guide to Boilerplate‑Free Objects - The New Stack
October 9, 2025 - There is a lighter solution for applications in need of thousands or millions of dataclass objects. In these instances, you can use slots=True to predefine the fields. This eliminates the __dict__ and reduces memory usage while speeding up attribute access. Why not use slots=True for all applications? slots=True isn’t a catchall improvement; it’s specifically useful in applications where memory is a concern.
🌐
Python
bugs.python.org › issue46382
Issue 46382: dataclass(slots=True) does not account for slots in base classes - Python tracker
This issue tracker has been migrated to GitHub, and is currently read-only. For more information, see the GitHub FAQs in the Python's Developer Guide · This issue has been migrated to GitHub: https://github.com/python/cpython/issues/90540
🌐
Reddit
reddit.com › r/learnpython › question about dataclasses and slots and type inference
r/learnpython on Reddit: Question about dataclasses and slots and type inference
June 15, 2022 -

Hello, I'm learning to work with the dataclass wrapper, and I want to use the slots feature.

When I don't provide a type annotation for an attribute, the dataclass wrapper doesn't generate a slot for it:

from dataclasses import dataclass


@dataclass(slots=True)
class Foo:
    bar: int = 1
    deadbeef = 2

foo = Foo()
print(foo.__slots__)

Output:

('bar',)

Is there a way I can automatically put it in slots, or must I type annotate everything?

🌐
Python
bugs.python.org › issue42269
Issue 42269: Add ability to set __slots__ in dataclasses - Python tracker
This issue tracker has been migrated to GitHub, and is currently read-only. For more information, see the GitHub FAQs in the Python's Developer Guide · This issue has been migrated to GitHub: https://github.com/python/cpython/issues/86435