In python how do you dynamically add modules to a package while your program is running.
I want to be able to add modules to the package directory from an outside pr
Add the module directory to sys.path and use the normal import statement.
sys.path
import