[Ncr-Python.in] Python , functions to be called after an interval

Tavish Naruka tavishnaruka at gmail.com
Sat Apr 9 08:30:26 CEST 2011


> I want to make some function call in python but after some interval,
> Like there are 30 functions and I want to call each function at specific time..
>
> I have found this method - http://docs.python.org/release/2.5.2/lib/timer-objects.html
> Timer object from threading
>

You can use  time.sleep(secs), the manual says its accurate. Then
maybe create threads and this sleep statement as the first line of the
thread functions.


More information about the Ncr-Python.in mailing list