This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Only dependency needed | |
import threading | |
# Dependency for the task | |
import datetime | |
import time | |
# Function wrapper | |
def periodic_task(interval, times = -1): | |
def outer_wrap(function): |