[Python] threading.Timer
Fredo Corleone
fredo.corleone a katamail.com
Sab 30 Set 2006 14:57:33 CEST
>
>
> > Volevo realizzare un piccolo programmino che ogni tot secondi esegue
> > una determinata operazione.
Forse è un problema legato all'IDE, non saprei.
Comunque se non ti interessa il multithreading puoi considerare l'utilizzo
di sched.
http://docs.python.org/lib/module-sched.html
import sched, time
s = sched.scheduler(time.time,time.sleep)
def hello():
print "hello world"
#s.enter(1,1,hello,()) per ripetere
s.enter(1,1,hello,())
s.run()
-------------- parte successiva --------------
Un allegato HTML è stato rimosso...
URL: http://lists.python.it/pipermail/python/attachments/20060930/689fbd69/attachment.html
Maggiori informazioni sulla lista
Python