@decorators in Python

Written by happymishra66 | Published 2017/05/08
Tech Story Tags: python | python3 | python-programming

TLDRvia the TL;DR App

In this article we will understand,

  1. What are decorators?
  2. How decorators work?
  3. How to create your own decorators in Python

To understand decorators in Python we should know what are functions in Python.

In Python, everything is object. Functions in Python are first-class objects which means that they can be referenced by a variable, added in the lists, passed as arguments to another function etc.

Functions can be referred by variables

Basic function in Python:

We can make another variable say_hello2 to refer to say_hello function as shown below:

With the above statement say_hello2 and say_hello are pointing to the same function definition, and execution of both will produce same result

Functions can be passed as arguments to another function

As functions are objects in python they can also be passed as parameters to another function. In the above example, we have passed say_hi function as an argument to say_hello function. say_hi is referenced by say_hi_func variable. Inside say_hello, say_hi_func is called which references say_hi and it prints “Hi”.

Functions can be defined inside another function

In the above example, say_hi function has been defined inside say_hello function. It is valid in python. When we call function say_hello, say_hi function gets defined inside say_hello function and it is called inside say_hello() function.

If we try to call say_hi outside say_hello function, Python will give error because say_hi does not exists outside of say_hello function.

Functions can return references to another function

In the above example, say_hello function returns a reference for say_hi function. Returned function reference is assigned to say_hi_func. Thus say_hi_func also starts pointing to say_hi function.

Another example with function arguments

Variable hello_var is accessed even outside the say_hello function because say_hi function was defined inside say_hello function so it can access all the variables of say_hello function. This is called as closure.

With the understanding of functions, now let’s understand decorators.

Decorators

Decorators are callable objects which are used to modify functions or classes.

Callable objects are objects which accepts some arguments and returns some objects. functions and classes are examples of callable objects in Python.

Function decorators are functions which accepts function references as arguments and adds a wrapper around them and returns the function with the wrapper as a new function.

Let’s see this with an example:

In the above example, decorator_func is the decorator function which accepts some_func, a function object, as an argument. It defines a wrapper_func which calls some_func but it also executes some code of its own.

This wrapper_func is returned by our decorator function and it’s stored in say_hello variable. Thus now say_hello refers to wrapper_func which has some extra code apart from calling the function which was passed as argument. Thus in another way we can say that, decorator function modified our say_hello function and added some extra lines of code in it. This is what decorators are. The output is the modified say_hello function with extra print statements

Python syntax for decorator

@decorator_funcdef say_hell():print 'Hello'

The above statements is equivalent to

def say_hello():print 'Hello'

say_hello = deocrator_func(say_hello)

Here, decorator_func will added some code on top of the say_hello function and will return the modified function or the wrapper function.

Functions with arguments and decorators

Consider the below example for function with parameters and decorators:

Here, we have defined say_hello function with two arguments and @decorator_func. Inner function of decorator_func i.e. wrapper_func must take exactly the same number of argument as say_hello function.

Here. @decorators_func validates if the passed parameters are not empty and none, if they are, it calls say_hello function with default arguments.

Passing parameter to a decorator function

To pass parameter to a decorator function we write a wrapper function to the decorator which then defines the decorator function inside itself. Example:

Other articles:

An Extensive Guide To Progressive Web Applications

  1. Let’s get this ‘this’ once and for all
  2. Service Workers
  3. Service Workers implementation
  4. Zip in Python
  5. lambda, map and filter in Python
  6. Concatenating two lists in Python
  7. List comprehensions in Python

Hacker Noon is how hackers start their afternoons. We’re a part of the @AMIfamily. We are now accepting submissions and happy to discuss advertising & sponsorship opportunities.

To learn more, read our about page, like/message us on Facebook, or simply, tweet/DM @HackerNoon.

If you enjoyed this story, we recommend reading our latest tech stories and trending tech stories. Until next time, don’t take the realities of the world for granted!


Published by HackerNoon on 2017/05/08