I have the below folder structure for my python project:
./SampleA/
   __init__.py
   company.py
./SampleB/
   __init__.py
   check.py
Now i am trying to import company.py module in my check.py module using the below command: 
from SampleA import company
when i run the file i get the below error :
ModuleNotFoundError: No module named 'SampleA'
How to fix this ?
 
     
    