python use self in decorator code example
Example: python decorator in class with self
class Dog:
def __init__(self, name):
self.name = name
def say_name(func):
def decorator(*args, **kwargs):
# self is always the first argument
self = args[0]
print(self.name)
return func(*args, **kwargs)
return decorator
@say_name
def bark(self):
print('woof!')