I have a folder of this file structure:
Desktop
    tech_comp
       googledash.csv
       viz.py
       sql_load.py
       company_AL
           __init__.py
           functionloads.py
           decisionplans.py
           niches.py
           actions.py
I am working with VScode in the following path as described above: C:\Users\username\Desktop\tech_comp\company_AL
I have written a bunch of list in the decisionplans.py now I am trying to load it in the actions.py I am working with. Here is what I did.
from company_AL import decisionplans
It does not show errors in the compiler but when I run I get the following. 
ModuleNotFoundError: No module named 'company_AL'
I do not intend to publish it as online as this is a private project, please how do I handle this?
Thanks in advance
 
     
    