4
I am developing a small application in Pyqt4 where I need to upload the data to a table coming from a Webservice. This I managed to do quietly. However, now, I need that every 1 minute, these data be updated.
How can I do a repeat of a function call every X seconds in Pyqt4?
Is there anything specific to this in Pyqt? (something similar to Javascript setInterval)
Note: The data reload process in this interval has to be asynchronous
I don’t have Pyqt installed, so I won’t even risk answering. But the way is to use
QTimer
. :) http://stackoverflow.com/questions/32362340/pyqt4-creating-a-timer– Luiz Vieira