I run Julia from a folder which contains a Python file called GramSchmidt.py which I wish to import from using PyCall. I proceed as follows:
using PyCall
GramSchmidt = pyimport("GramSchmidt")
I however get an error that says ModuleNotFoundError("No module named ‘GramSchmidt’ "). How should I proceed to be able to import from a file in my current directory with pyimport?