What\'s the rationale behind not allowing * in relative imports? e.g. from ..new_tool import * or doing a relative import directly:
stuff/ __init__.py mylib.py Foo/ __init__.py main.py foo/ __init__.py script.py script.py wants to import mylib.py
How do I import files in Python? I want to import: a file (e.g. file.py) a folder a file dynamically at runtime, based on user input