Skip to content

A wrapper around builtin threading module to automate repetitive timing.

License

Notifications You must be signed in to change notification settings

selcuko/RepetitiveTimer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RepetitiveTimer

RepetitiveTimer module is wrapper for threading.Thread, makes it easy to initialize a repetitive timer.

  • No additional modules needed

Usage

import threading, time
from RepetitiveTimer.RepetitiveTimer import RepetitiveTimer

def poo():
    print("Timer ticked.")

stopper = threading.Event()
timer = RepetitiveTimer(poo, .5, stopper) # function, interval (seconds), stopper flag
timer.run()   # To start timer
time.sleep(10)
stopper.set() # To stop timer

About

A wrapper around builtin threading module to automate repetitive timing.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages