python-decorators

Built-ins and libraries

@dataclasses.dataclass

The dataclasses module is a new addition in Python 3.7 that utilizes the type annotation syntax introduced in 3.6 to create fully-functional classes that are used to store data.

Some consider dataclass to be an upgrade from namedtuple.

In short, the decorator will read the type annotations and create methods like __init__, __repr__, __eq__, etc.

Prev / Up / Next