Basically, I need to run a script that tells a running process (python script) to do something.
I have a pyside UI with a listview that i need to update. This is executed as a subprocess of a program (Vicon Blade). Now I need to update the listview by running a second python script from the same program.
How do I do that? I have looked into signal, subprocess and other modules, but i can't find a proper solution, where the UI stays responsive or doesn't close.
Thanks,