Given:
Module A.py
    class utilities:
        
        def __init__(self):
            #Is there a way to get the class that instantiates this constructor ? But here, in the init method?
            
        def utilMethod(self):
            pass
Module B.py
from A import utilities
    class dummy:
    
        utils = utilities()
        
        def dummyMthod(self):
            utils.utilMethod()
            
#Is there a way to get the class that instantiates utilities class constructor ? But in the init method of the class being instanciated?
 
     
    