I want to simplify my multi-page Taipy GUI application by creating one Python file per page. Each new file should contain the Taipy Markdown page format and the custom Python code to manipulate variables used in the page.
The basic setup with one main.py file is explained here: https://docs.taipy.io/en/latest/getting_started/getting-started-gui/step_07/ReadMe/
How would I organize my Taipy multi-page application with one Python file per page?
What I tried initially was to create one Python file per page and move all custom code to set/manipulate variables and the page's Markdown format in the respective file.
The issue is that Taipy is unable to read variables or functions defined in the page's Python file. Only the page format is read. My next idea would be to set all variables in the application's main.py file, but that will bloat it up quite a lot in my view.