Python Reflection

What is Python Reflection?

Python reflection is a powerful feature that allows a program to examine, modify, and even create new objects and classes at runtime. It provides a way to introspect and manipulate the structure and behavior of objects and classes, making it a valuable tool for metaprogramming and dynamic programming.

How Does Python Reflection Work?

Python reflection is based on the concept of metadata, which is data about the data. In Python, every object and class has associated metadata that describes its attributes, methods, and other characteristics. Reflection allows us to access and modify this metadata dynamically, without having to know the details of the object or class beforehand.

Examples of Python Reflection

To illustrate the concept of Python reflection, let’s consider a few examples:

Example 1: Accessing Object Attributes

Suppose we have a class called “Person” with attributes like name, age, and profession. Using reflection, we can dynamically access these attributes at runtime:

“`python
class Person:
def __init__(self, name, age, profession):
self.name = name
self.age = age
self.profession = profession

person = Person(“John Doe”, 30, “Engineer”)

# Accessing attributes using reflection
print(getattr(person, “name”)) # Output: John Doe
print(getattr(person, “age”)) # Output: 30
print(getattr(person, “profession”)) # Output: Engineer
“`

In this example, the `getattr()` function is used to dynamically access the attributes of the `person` object. We provide the object and the name of the attribute as arguments, and the function returns the value of the attribute.

Example 2: Modifying Object Attributes

Reflection also allows us to modify object attributes dynamically. Let’s continue with the previous example and demonstrate how we can change the value of an attribute using reflection:

“`python
setattr(person, “age”, 35)

# Modifying attribute using reflection
print(getattr(person, “age”)) # Output: 35
“`

Here, the `setattr()` function is used to dynamically modify the value of the `age` attribute of the `person` object. We provide the object, the name of the attribute, and the new value as arguments, and the function updates the attribute accordingly.

Example 3: Creating New Objects Dynamically

Python reflection also allows us to create new objects dynamically. We can use the `type()` function to create a new class on the fly, and then instantiate objects of that class. Let’s see an example:

“`python
class Animal:
def __init__(self, name):
self.name = name

# Creating a new class dynamically
Cat = type(“Cat”, (Animal,), {“sound”: “Meow”})

# Creating an object of the new class
cat = Cat(“Whiskers”)

# Accessing attributes of the new object
print(cat.name) # Output: Whiskers
print(cat.sound) # Output: Meow
“`

In this example, we use the `type()` function to create a new class called “Cat” that inherits from the “Animal” class. We provide the name of the class, a tuple of base classes, and a dictionary of attributes as arguments. We can then instantiate objects of the new class and access their attributes.

Conclusion

Python reflection is a powerful feature that allows us to examine, modify, and create objects and classes at runtime. It provides a way to dynamically access and manipulate the metadata of objects and classes, making it a valuable tool for metaprogramming and dynamic programming. By using reflection, we can write more flexible and adaptable code that can adapt to changing requirements and circumstances.

Scroll to Top