Python Metaclasses: Classes of Classes
In Python, everything is an object—including classes themselves. If classes are objects, they must be instances of something. That something is a metaclass. The default metaclass for all classes is…
Read more →