0

I need to execute a function on python on intervals of one minute repeatedly. There is another alternative to the "Busy Waith" method. Maybe some like a timer that wake up every minute.

BenMorel
  • 34,448
  • 50
  • 182
  • 322
chfumero
  • 1,137
  • 2
  • 13
  • 26

1 Answers1

3

The best I can tell you is importing time and using time.sleep(60)

KodyVanRy
  • 1,110
  • 1
  • 14
  • 25