application
├── app
│ └── folder
│ └── file_1.py
│ └── file_2.py
└── app2
└── folder2
└── file_3.py
I created a file_3 and trying to use classes defined in file_1.
I tried to import using the following method but had an issue because file_1 is importing file_2 which then was raising an error.
import sys
sys.path.append('/.../application/app/folder')
import file_1
How can I import file_1 to file_3 and all the files file_1 is depending on.