Python überprüfen, ob Variable Modul ist

from types import ModuleType

isinstance(obj, ModuleType)
Thoughtful Toad