There is a package. In the package's __init__.py
there is __all__
defined which contains name of every module in package. If I then use
from package import *
will it import every module of that package so I can reference them by name?
Is it possible in Python to import every package's module with from x import *
statement?