I'm developing a small application in Pyqt4 where I need to load the data into a table coming from a Webservice. This I was able to do quietly. But now, I need to update this every 1 minute.
How can I do a repetition of a call to a function every X seconds in PyQt4?
Is there anything specific for this in Pyqt? (something like Javascript's setInterval)
Note : The process of reloading the data in this range must be asynchronous