Hi @BS_THE_ANALYST ,

If modules don't live in the same directory you need to add directory that contains your module to sys.path.  You can specify directories using a relative path, as in the following example:

import sys
import os
sys.path.append(os.path.abspath('..'))

Here's a documentation entry where all of this is well described:

Work with Python and R modules | Databricks Documentation

If there is a need to share module with colleagues than I guess wheel file is a perfect fit for that purpose 🙂