This is a series of notes from FreeCodeCamp’s PostgreSQL tutorial. The youtube video can be found here.
Notes
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.