Descriptors and Dataclasses

The descriptor protocol behind attributes, and dataclasses for data carrying classes.

2 notes

Notes

Python

Dataclasses

A dataclass generates __init__, __repr__ and __eq__ from field declarations. It removes the boilerplate from every class whose main job is holding dat...

Read more