Hi@akhtar,
There is no simple way to import python files in another directory. This is unrelated to the jupyter notebook. You can add the directory containing the file you wish to import to your path and then import the file as shown below.
import sys
sys.path.insert(0, '/path/to/application/app/folder')
import file