Python Decorators 101 python decorators from functools import wraps def outer(): @wraps def inner(): return inner return outer