How To Load / Import Python Package, Module Dynamically
Python provide built-in function __import__(name[, globals[, locals[, fromlist[, level]]]]) for us to load / import python module in python source code dynamically. The name parameter is the module name in string format. The fromlist parameter is a boolean value. When fromlist is True, it means the module name can contain package name ( for example …
How To Load / Import Python Package, Module Dynamically Read More »