My directory structure is like this:
app/
-sub1/
-sub1_1/
-sub1_2/
-sub1_3/
-sub2
-class1.py
-app.py
I am running a flask app which is trying to execute app.py from the app folder. I want to import the classes from files inside sub1 in class files inside sub2.
I want to do this without setting sys.path
Update: I have _ init _.py in all folder levels