You can now sponsor Hakan Çelik 🍰
logo
Hakan Çelik | Metaclasses in Python
Invisible metaclasses in python
Initializing search
    hakancelikdev/metaclasses
    hakancelikdev/metaclasses
    • Overview
      • Understanding python classes
      • Dynamic class creation
      • More accurate dynamic class creation
      • Metaclasses in python
      • Run methods order in python
      • Run methods order in python with more explanation
      • Invisible metaclasses in python
      • Meta classes without type
      • More accurate meta classes without type
      • Register classes in python
      • Singleton in python
      • Auto slots
      • Logging namespace
      • Modeling a class with a metaclass
      • Define method if condition true

    Invisible metaclasses in python

    class K(metaclass=type):
        pass
    
    
    class Example(K, metaclass=type):
        pass
    
    
    class K:
        pass
    
    
    class Example(K):
        pass
    

    Last update: June 2, 2023
    Created: June 2, 2023
    Back to top
    Previous Run methods order in python with more explanation
    Next Meta classes without type
    Copyright © 2023 - 2023 Hakan Çelik
    Made with Material for MkDocs

    Cookie consent

    We use cookies to recognize your repeated visits and preferences, as well as to measure the effectiveness of our documentation and whether users find what they're searching for. With your consent, you're helping us to make our documentation better.