My question is about the usage of thread in the pyqt5 application. I am fair newly to the GUI world, I am an embedded guy. I m having a hard time bundling my python3 application in Windows that uses Joblib to achieve parallelism. I am doing read and write of 10 UARTs concurrently.
I want to deliver this application as Windows OS installation to the customer, not as code in the factory.
I am planning to abandon the usage of Joblib in my pyqt5 application because of creating windows package.
I checked with other GUI guy at my work, he said pyqt5 threads have a lot of issues and synchronizing threads are big mess, not that easy, but his answer is not convincing to me.
I am sure in this world many using Pyqt5 build in multi-thread or multi-parallel mechanism, I just want to write parallelly to the Uarts and read the data from Uarts stream.
Someone can provide the good source to learn more about pyqt5 multithread or parallel processing example?