I have created an python_util.py in the same folder where I have my Jupyter Notebook. Now on Jupyter notebook I want to import that as a module.
from python_util import createLogging
createLogging is a function inside python_util.py
I get the following error -
No module named python_util Traceback (most recent call last): ImportError: No module named python_util
Can someone help me fix it ? Thanks.