© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Remco Boerma
CTO@NPO, python dev, dba
Can you elaborate a bit on what you are trying to achieve?
isn't from lib import x,y,z what you are searching for?
from lib import x,y,z
If it's dynamic loading you need, you shouldn't use __import__ but use importlib.import_module ( link ) instead
__import__
importlib.import_module