I have a flask application which needs to import some functions from my machine learning model present in Jupyter Notebook. How can i import these functions in my flask app?
I tried importing it as
#myapp.py
from ipynb.fs.full. import *
But doesn't seem to work and getting the below error..
ModuleNotFoundError: No module named 'ipynb'