I am having a issue importing a python file from another directory. Below is my project layout.
project/
   include/
     networking/
       ssl.py
     process.py
Inside my ssl.py file I am trying to access a function inside process.py
I have tried
from include.process import procfunction
This returns a error
cannot import name 'procfunction' from 'include.process'
 
     
    