I have many modules (hundreds). In each module I have at least one function. My question is how can I import all functions from all modules with only one line? Because I do not want to do it like this:
from tests.test_001 import test_001_func from tests.test_002 import test_002_func from tests.test_003 import test_003_func ... from tests.test_999 import test_999_func test_xxx are modules and these modules contains test_xxx_func function, all modules are in one folder.
I would like use something like this:
from tests import * test_001.test_001_func() But this is not working