/ Published in: Python
Expand |
Embed | Plain Text
from threading import * def timer(): # do code here t = Timer(10*60.0, timer) # toutes les 10 minutes t.start() timer() # run it
You need to login to post a comment.
manatlan on 09/09/09
1 person have marked this snippet as a favorite
from threading import * def timer(): # do code here t = Timer(10*60.0, timer) # toutes les 10 minutes t.start() timer() # run it
You need to login to post a comment.