My project space is something like this:
Project
Functions_Folder/
__init__.py
Folder1/
__init__.py
Function1.py
Function2.py
Function3.py
Folder2/
__init__.py
Function4.py
Function5.py
Function6.py
Codes_Folder/
script1.py
script2.py
I need to import in script1.py
some functions of the Folder1
and Folder2
but that functions also have to import functions on the same directory, i mean, for example Function4.py
has to import Function6.py
and Function3.py
Please help.