Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 387 Bytes

readme.rst

File metadata and controls

9 lines (5 loc) · 387 Bytes

Repeating Timer: A simple threaded repeating timer, because the stdlib doesn't have one

For whatever reason, threading.Timer doesn't allow you to call the same function more than once. So, here you go.

>>> t = RepeatingTimer(30.0, to_call, *args, **kwargs)