My directory structure is like:
example1(folder)
- util.pyd(file)
- high.pyd(file)
example2(folder)
-main_file.py(file)
Here, util.pyd and high.pyd files are in cython.
In addition, util.pyd is parent of high.pyd.
That means it uses a class of util.pyd as an object of its class. And then main_file.py imports classes from both util.pyd and high.pyd.
The issue what I am facing is:
In main_file.py, it imports class from Util.pyd correctly, but importing class from high.pyd, it is unable to find util.