Threading in a PyQt application: Use Qt threads or Python threads?
This was discussed not too long ago in PyQt mailing list. Quoting Giovanni Bajo’s comments on the subject: It’s mostly the same. The main difference is that QThreads are better integrated with Qt (asynchrnous signals/slots, event loop, etc.). Also, you can’t use Qt from a Python thread (you can’t for instance post event to the … Read more