check_kwargs_not_none
check_kwargs_not_none (func)
*A decorator that checks if any keyword argument is None. Raises a ValueError if any argument is None.
Args: func: The function to be decorated.
Returns: The decorated function.
Raises: ValueError: If any keyword argument is None.*
io
io (func)
*A decorator that inspects the inputs and outputs of a function.
Args: func: The function to be decorated.
Returns: The decorated function.*
timeit
timeit (func)
*A decorator that measures the execution time of a function.
Args: func (callable): The function to be timed.
Returns: callable: The wrapped function.
Example: @timeit def my_function(): # code to be timed pass
my_function() # prints the execution time of my_function*
warn_on_fail
warn_on_fail (func)