Notes

Python Descriptors

In its most basic sense a descriptor is any object whose attribute access has been overridden by __get__(), __set__(), or __delete__(). If any of these methods are defined the object it is a descriptor.

Read more >