from . import _nd_image
My question is that there is no such file _nd_image.py in the current directory and code uses this above import statement and below, somewhere in code there is a statement _nd_image.fun()
.
How is it possible to import a file which is not present in the directory and use it to call some function.
The code is taken from here
import statement in at line no.36
and usage of _nd_image is at line no. 143