do "some action" once a minute

James Stroud jstroud at ucla.edu
Tue May 9 20:35:34 EDT 2006


Petr Jakes wrote:
> I would like to do "some action" once a minute. My code (below) works,
> I just wonder if there is some more pythonic approach or some "trick"
> how to do it differently.
> 
> minutes=time.localtime()[4]
> while 1:
>     min, sec = time.localtime()[4:6]
>     if  sec==0 and minutes!=min: # first occur of sec==0 only!! polling
> 10x a second
>         minutes=min
>         print "Eureca"
>     time.sleep(0.1)
> 
> Regards
> 
> Petr Jakes
> 

This may be what you want:

http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/464959

James

-- 
James Stroud
UCLA-DOE Institute for Genomics and Proteomics
Box 951570
Los Angeles, CA 90095

http://www.jamesstroud.com/



More information about the Python-list mailing list