SlideShare a Scribd company logo
Understanding
Metaclasses
• Computer science student at TU Berlin
• Software Developer at Charité - Universitätsmedizin
Berlin
• Involved in Flask, Werkzeug, Babel and many other
open source projects
What is an object?
What is an instance?
What is a class?
What is a metaclass?
How does an instance
attribute of a classes
metaclass affect that class?
How is this different
from a class attribute?
How does a method of a
classes metaclass affect
that class?
How is this different from
a class method defined
with @classmethod?
Is there anything
unique to metaclasses?
def __new__(cls, name, bases, namespace, **kwargs)!
!
def __init__(self, name, bases, namespace, **kwargs)
How is this different
from class decorators?
@classmethod
def __prepare__(cls, name, bases, **kwargs)
def __call__(self, *args, **kwargs)
(Sane) use cases?
• Form libraries
• ORMs
• Anything declarative
Q&A

More Related Content

PPT
OOP for java
PPTX
C# structure
PDF
Making Linked Data SPARQL with the InterMine Biological Data Warehouse
PPT
Using DAS software, an introduction to some DAS implementations
PPTX
Linked open data: standardization, interoperability and multilingual challeng...
PPTX
Semantic Application for Healthcare
PDF
ExtJS: La piattaforma vincente (class system)
PPTX
POSTDATA: Towards publishing European Poetry as Linked Open Data
OOP for java
C# structure
Making Linked Data SPARQL with the InterMine Biological Data Warehouse
Using DAS software, an introduction to some DAS implementations
Linked open data: standardization, interoperability and multilingual challeng...
Semantic Application for Healthcare
ExtJS: La piattaforma vincente (class system)
POSTDATA: Towards publishing European Poetry as Linked Open Data

Viewers also liked (7)

PPT
Stoop 304-metaclasses
KEY
Ruby's metaclass
PDF
The meta of Meta-object Architectures
KEY
Pragmatic blocks
PPTX
April iOS Meetup - UIAppearance Presentation
PDF
Objective runtime
PDF
Objective C for Samurais
Stoop 304-metaclasses
Ruby's metaclass
The meta of Meta-object Architectures
Pragmatic blocks
April iOS Meetup - UIAppearance Presentation
Objective runtime
Objective C for Samurais
Ad

Similar to Understanding Metaclasses (20)

PPTX
OCP Java (OCPJP) 8 Exam Quick Reference Card
PPTX
Android Training (Java Review)
PPT
introduction-to-object-oriented-programming.ppt
PPT
introduction-to-object-oriented-programming.ppt
PPT
introduction-to-object-oriented-programming.ppt
PDF
JAVA Class Presentation.pdf Vsjsjsnheheh
PPTX
Object Oriented Programming Language is an oop
PPTX
UNIT - 1 Java Fundamentals, Basics of java
PPTX
Object Oriented Programming fundamentals.pptx
PPTX
object oriented programming and methodology.pptx
PPTX
MIT302 Lesson 2_Advanced Database Systems.pptx
PPTX
Introduction to Machine Learning
PPTX
Introduction to oop and java fundamentals
PPTX
Java chapter 5
PPTX
PPTX
Object oriented programming
PPTX
SKILLWISE - OOPS CONCEPT
PPT
Overview of Object-Oriented Concepts Characteristics by vikas jagtap
PPTX
Introduction to Software - Coder Forge - John Mulhall
PPTX
cs213Lecture_1 java programming oopsss.pptx
OCP Java (OCPJP) 8 Exam Quick Reference Card
Android Training (Java Review)
introduction-to-object-oriented-programming.ppt
introduction-to-object-oriented-programming.ppt
introduction-to-object-oriented-programming.ppt
JAVA Class Presentation.pdf Vsjsjsnheheh
Object Oriented Programming Language is an oop
UNIT - 1 Java Fundamentals, Basics of java
Object Oriented Programming fundamentals.pptx
object oriented programming and methodology.pptx
MIT302 Lesson 2_Advanced Database Systems.pptx
Introduction to Machine Learning
Introduction to oop and java fundamentals
Java chapter 5
Object oriented programming
SKILLWISE - OOPS CONCEPT
Overview of Object-Oriented Concepts Characteristics by vikas jagtap
Introduction to Software - Coder Forge - John Mulhall
cs213Lecture_1 java programming oopsss.pptx
Ad

Recently uploaded (20)

PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPT
Teaching material agriculture food technology
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
Cloud computing and distributed systems.
PDF
KodekX | Application Modernization Development
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Reach Out and Touch Someone: Haptics and Empathic Computing
Spectral efficient network and resource selection model in 5G networks
Programs and apps: productivity, graphics, security and other tools
Encapsulation_ Review paper, used for researhc scholars
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
The Rise and Fall of 3GPP – Time for a Sabbatical?
Teaching material agriculture food technology
Understanding_Digital_Forensics_Presentation.pptx
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Digital-Transformation-Roadmap-for-Companies.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Network Security Unit 5.pdf for BCA BBA.
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
MIND Revenue Release Quarter 2 2025 Press Release
Chapter 3 Spatial Domain Image Processing.pdf
Cloud computing and distributed systems.
KodekX | Application Modernization Development
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...

Understanding Metaclasses