Hey,
I have a PyQt4 application, which at some point packs a big file using the tarfile module. Since the tarfile module does not implement any callback strategy, it blocks and the Qt GUI gets unresponsive.
I want the GUI to keep updating during that time. The only possibility is a separate thread. So, I start a QThread. What do I have to do in the QThread to make the GUI update itself? As soon, as the tar process is finished, I want the thread to finish.
Thanks! Nathan