May 2017
Beginner to intermediate
444 pages
11h 31m
English
In this recipe, we will pass queues around different modules. As our GUI code increases in complexity, we want to separate the GUI components from the business logic, separating them out into different modules.
Modularization gives us code reuse and also makes the code more readable.
Once the data to be displayed in our GUI comes from different data sources, we will face latency issues, which is what queues solve. By passing instances of Queue among different Python modules, we are separating the different concerns of the modules' functionalities.
We have ...
Read now
Unlock full access