i have this basic project structure
/components/__init__.py
/components/com_auth.py
/app.py
No! I want import some varible from app.py
in com_auth
.
I trying do like this
/components/__init__.py
/components/com_auth.py
/__init__.py
/app.py
But it, of course, not work.
Yes, i know, that i can do it like this
/app.py
/app/__init__.py <<<< there i containg varible
/app/components/__init__.py
/app/components/parent.py
/app/components/__init__.py
/app/components/com_auth.py
But how i can do it without it?