Class based decorators in python
In the previous articles of Python decorator series we learnt to create a simple function based decorator, how it works under the hood and how to fix the doc strings. In this article, we will learn to create a class based decorator and use it to dec...