Spaces:
Running
Running
File size: 179 Bytes
ac819bc |
1 2 3 4 5 6 7 8 9 10 |
from importlib.util import find_spec
def is_module_exist(module_name):
spec = find_spec(module_name)
if spec is None:
return False
else:
return True
|