For imported module, is it possible to get the importing module (name)? I\'m wondering if inspect can achieve it or not~
It sounds like you solved your own problem: use the inspect module. I'd traverse up the stack until I found a frame where the current function was not __import__. But I bet if you told people why you want to do this, they'd tell you not to.
inspect
__import__