I am currently trying to make GUI in python. For this, the way I found is to use Qt Designer to generate a graphical interface .ui, and to convert it in .py with PyQt4, to edit functions in python.
The question I have is then how to modify the graphical interface without having to set up again the whole python code ?
Indeed, if I want for instance to add a button in the interface, with a particular function, I would simply like to add this function in the .py, without doing again the whole .py
To sum up, I would like to be able to update in the future my interface easily.
Do you have any idea ?
Thank you in advance ! :)