Decorators in Python

Divya Khatnar
4 min readMar 1, 2023

Decorators in Python are functions that modify the behavior of another function or method.

Decorators are used to add functionality to an existing function or class without modifying the function or class itself. Decorators are defined using the @ symbol followed by the name of the decorator function.

Here’s a simple example of a decorator:

def my_decorator(func):
def wrapper():
print("Before function is called.")
func()
print("After function is called.")
return wrapper

@my_decorator
def hello():
print("Hello, world!")

hello()

In this example, my_decorator is a decorator function that takes a function func as its argument and returns a new function wrapper that modifies the behavior of func.

The @my_decorator syntax is used to apply the my_decorator decorator to the hello() function. When hello() is called, the wrapper() function returned by my_decorator is called instead, which first prints "Before function is called.", then calls func() (which is hello()), and finally prints "After function is called."

Decorators are commonly used for:

  • Logging: Adding logging statements before and after a function call.
  • Timing: Measuring the time it takes to execute a function.
  • Caching: Caching the results of a function to avoid recomputing them.
  • Authorization: Checking if a user is authorized to access a function or method.
  • Validation: Validating the arguments of a function before calling it.

Rules to keep in mind while using decorators in Python:

  1. Decorator syntax: Decorators are defined using the @decorator syntax, where decorator is the name of the decorator function. The decorator function should take a function or class as its argument and return a new function or class that modifies the behavior of the original.
  2. Function signature: If a decorator is used to modify a function, the new function returned by the decorator should have the same signature as the original function. This means that it should take the same arguments and return the same value (if any).
  3. Decorator order: If multiple decorators are applied to a function or class, they are applied in reverse order. This means that the last decorator applied is executed first, followed by the second-to-last decorator, and so on. This can be important if the decorators depend on each other, or if they modify the same aspect of the function or class.
  4. Decorator arguments: Decorators can take arguments, which can be used to modify their behavior. If a decorator takes arguments, it should return a new decorator function that takes a function or class as its argument and returns a new function or class that modifies the behavior of the original.
  5. Decorator documentation: Decorators can modify the behavior of a function or class in subtle ways, so it is important to document their use and behavior clearly. This can help prevent confusion and make the code easier to understand and maintain.

Few common mistakes to avoid when using decorators in Python:

  1. Forgetting to return a function: When defining a decorator function, it is important to remember to return a new function that modifies the behavior of the original function. Forgetting to return a function can result in the decorator not having any effect.
  2. Forgetting to update metadata: If a decorator is used to modify a function, it is important to update the metadata (such as the name, docstring, and signature) of the new function to match the original. Failing to do so can make the code harder to understand and maintain.
  3. Using decorators on classes incorrectly: When using a decorator on a class, it is important to modify the class definition itself, not the class’s methods. Attempting to modify the class’s methods directly can result in unexpected behavior.
  4. Using decorators excessively: While decorators can be a powerful tool, using them excessively can make the code harder to read and understand. It is important to use decorators judiciously and only when they are truly necessary.
  5. Using global variables in decorators: Using global variables in decorators can result in unexpected behavior, especially if the decorator is used on multiple functions or classes. Instead, it is recommended to pass any necessary arguments to the decorator function explicitly.

Decorators are required in Python because they provide a way to modify the behavior of functions or classes without modifying the functions or classes themselves. This can be useful for a number of reasons:

  1. Reusability: A decorator can be defined once and applied to multiple functions or classes, making it easy to reuse code and avoid duplication.
  2. Separation of concerns: By separating the functionality of a function or class into separate decorators, each decorator can be responsible for a specific aspect of the functionality, making the code easier to understand and maintain.
  3. Flexibility: Decorators can be applied at runtime, making it possible to change the behavior of a function or class dynamically based on the current state of the application.
  4. Code organization: By using decorators to add functionality to a function or class, the code for the added functionality is kept separate from the code for the original function or class, making it easier to organize and maintain the code.

Overall, decorators are a powerful tool in Python that allow for flexible, reusable, and maintainable code. They provide a way to add functionality to existing code without modifying the code itself, which can be especially useful when working with code that you do not have control over or when working in large codebases where making modifications to existing code can be risky.

If you like the article, please support my work by clicking the clap button (once or more :) ). Follow for more such articles.

--

--