A class-of-a-class is called MetaClass. The real use of Metaclass is good to know for beginners. All languages don’t support this. But Python supports it since it follows Smalltalk. Here, you will know how to create metaclass and its use cases.

Below is the list of all sections. Go ahead and click on any of these links to go to that section.

  1. How to Identify Metaclass
  2. Why You Need Metaclass
  3. Ordinary Vs. MetaClass
  4. Use Cases of MetaClass
  5. Best Example of Python2 MetaClass
  6. Best Example of Python3 MetaClass
  7. Further Reading

How to Identify Metaclass

Example

class Meta(type):     
 pass  

# The keyword argument is 'type'
# so this is the MetaClass

class MyClass(metaclass=Meta):    
 pass

# This is not MetaClass, since, it has
# keyword argument metaclass=Meta
 
class MySubclass(MyClass):    
 pass

# This is not MetaClass, is inherited
# from MyClass.

Related Posts

Why You Need Metaclass

  • You can create MetaClass like any ordinary class
  • The Metaclass is called automatically when you call it from another class

Example:

class LittleMeta(type):
def __new__(cls, clsname, superclasses, attributedict):
print("clsname: ", clsname)
print("superclasses: ", superclasses)
print("attributedict: ", attributedict)
return type.__new__(cls, clsname, superclasses, attributedict)

We will use the metaclass "LittleMeta" in the following example:
class S:
pass
class A(S, metaclass=LittleMeta): -> called automatically
pass

a = A()
clsname: A
superclasses: (<class '__main__.S'>,)
attributedict: {'__module__': '__main__', '__qualname__': 'A'}

Ordinary Vs. Metaclass

Python uses the type function to create classes since type is actually a metaclass. The type function is the metaclass that Python uses to create class objects, but you can also create your own metaclasses.

SomeClass = MetaClass() 
object = SomeClass()
SomeClass = type('SomeClass', (), {})
How to Understand Metaclass in Python Step By Step
Python Metaclass

Featured

How to Understand Metaclass in Python Step By Step

Use Cases of Metaclass

  1. logging and profiling
  2. interface checking
  3. registering classes at creation time
  4. automatically adding new methods
  5. automatic property creation
  6. proxies
  7. automatic resource locking/synchronization.

Python2 Metaclass

In Python 2, metaclasses are set by defining the __metaclass__ variable. This variable can be any callable accepting argument, such as name, bases, and dict.

class MyBase (object):
pass

class MyMeta (type):
pass

class MyClass (MyBase):
__metaclass__ = MyMeta
pass

Python3 Metaclass

In Python 3, metaclasses are set using the keyword metaclass.

class MyBase (object):
pass

class MyMeta (type):
pass

class MyClass (MyBase, metaclass=MyMeta):
pass

Resources

Subscribe Today.

Join 1,914 other subscribers

LATEST POSTS

FAANG-Style SQL Interview Traps (And How to Avoid Them)

SQL interviews at FAANG (Facebook/Meta, Amazon, Apple, Netflix, Google) are not about syntax. They are designed to test logical thinking, edge cases, execution order, and data correctness at scale. Many strong candidates fail—not because they don’t know SQL, but because they fall into subtle traps. In this blog, we’ll walk through real FAANG-style SQL traps,…

Common Databricks Pipeline Errors, How to Fix Them, and Where to Optimize

Introduction Databricks has become a premier platform for data engineering, especially with its robust integration of Apache Spark and Delta Lake. However, even experienced data engineers encounter challenges when building and maintaining pipelines. In this blog post, we’ll explore common Databricks pipeline errors, provide practical fixes, and discuss performance optimization strategies to ensure your data…

Something went wrong. Please refresh the page and/or try again.