I have a project that exists at a specific location:
~/repos/my_proj
And lets say it has a structure like the following:
my_proj/
stuff1
stuff2
And if I'm that directory I can include python code as one would think
from stuff1 import func1
from stuff2 import func2
Is there a way to "find" that directory and use it as a variable so I can include that code anywhere
Lets say I'm at ~/Docs/TestArea
I'd like to be able to do
from my_proj_dir.stuff import func1
Is there any way to do that?