I would like to ask for some help, I'm not able to force this to work I have working app, I starting for b23.py or b55.py or any other xx.py file from Start folder Inside of the file I have some variables etc. Main part runs in app.py & until now I was hardcoded var inside app.py but now I want to use value from b23.py or b55.py I know how to import from Data\worksok.py "from Data.kaso import *" - works fine
But how to import from Start folder, directly from bxx.py file?
Structure:
Start (main dir)
|-b23.py
|-b55.py
|-b(xx number).py
|-Data
|-__init__.py
|-kaso.py
|-classes
|-__init__.py
|-app.py
I was trying some solution from here Importing from a relative path in Python or here Import a module from a relative path but somehow this doesn't work
I'm pretty sure I'm doing smth wrong but I'm just too weak for py for now:/
I will appreciate any advice)