Say I have a class with a bunch of methods:
class Human(): def eat(): print(\"eating\") def sleep(): print(\"sleeping\") def throne(): print
If you want to have arguments as well, you can try using metaprogramming to alter the class methods themselves to run a pre/post operation, like the answer to How to run a method before/after all class function calls with arguments passed?