This question already has answers here:
What is the function form of star import in Python 3
(1 answer)
Closed 3 years ago.
I would like to accomplish the same result as from module import *
using importlib.
This question Importing module with a local name using importlib describes how to do import module as mod
, which is related but not the same.