I'm importing helpers.py file from <project_root>/lib/helpers.py location to one of the sub-folder in my project. I am using sys package. But I'm getting ModuleNotFound error while importing.
Given below is the code I'm using.
import sys
sys.path.insert(0, '/d/Development/s5-data-analysis/lib/')
import helpers
The sub-folder is /d/Development/s5-data-analysis/notebooks/my.ipynb . What is the correct way of importing this helper.py to my.ipnb .