From & Import
__init__.py
When users import the package, it executes every time and contains initialization code in init.py which is declared once to share imports for that directory
__version__ = "" from .blabla import (...) __all__ = [ ]
__init__.py
__version__ = "" from .blabla import (...) __all__ = [ ]