In the previous recipe, we converted the Designer UI code into Python code using the pyuic5 converter tool. In this recipe, we will look at the generated code. Every GUI we create with the Designer needs to be converted and any changes we make will overwrite all the previous code. This will allow us to understand how to decouple UI code from the functionality we will add to the UI using a modular approach in Python.
Understanding the converted Designer code
Getting ready
You will need to have the converted code from the previous recipe available. If you did not follow the preceding recipes in this chapter, simply download the necessary code from the Packt website for this book. The website provides all of the code for this...