I have a structure like this
pkg1
__init__.py
file_1.py
file2.py
pkg2
test_1.py
__init__.py
I have a structure like above. I have a code in test_1.py
which is trying to load file_1.py
#test_1.py
from pkg1 import file_1
# from .. import file_1
Both statements are not working. How can I import the file_1 from pfg1