Python Forum
[Intermediate] Blog series about Python Properties and Descriptors - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: Tutorials (https://python-forum.io/forum-4.html)
+---- Forum: Tutorial Requests and Submissions (https://python-forum.io/forum-21.html)
+---- Thread: [Intermediate] Blog series about Python Properties and Descriptors (/thread-7251.html)



Blog series about Python Properties and Descriptors - chnlior - Dec-30-2017

Attached are links to, recent blog series about property, descriptors and their usage.

  1. part 1 starts with the high level property built-in.
  2. part 2 dives down to the descriptor foundation and how it acts in the more general attribute access mechanism .
  3. part 3 describes how the class methods "magic" is facilitated by the descriptors.

Hope it would be helpful for others.
Enjoy.

Lior


RE: Blog series about Python Properties and Descriptors - Larz60+ - Dec-30-2017

Looks well done, thank you!