Creating a Python package consists of creating an init module and then having perhaps some other modules in the same level as init or higher to call the package. For example, the following is the structure for package A.
A/
__init__.py
A_1.py
Call.py
However, I am wondering if the same thing can be done in Jupyter notebook instead of .py modules.
A/
__init__.ipynb
A_1.ipynp
Call.ipynb
The motivation behind this is that sometimes you only have access to Jupyter notebook like in SageMaker so wondering how this can be done.