15秒ごとにインターネットから値を更新する必要があるwxPythonアプリを作成しています。プログラムを中断することなく、値を設定し、この間隔でバックグラウンドで実行する機能を使用できる方法はありますか?
編集:これが私が試していることです:
import thread
class UpdateThread(Thread):
def __init__(self):
self.stopped = False
UpdateThread.__init__(self)
def run(self):
while not self.stopped:
downloadValue()
time.sleep(15)
def downloadValue():
print x
UpdateThread.__init__()