Metadata-Version: 2.1
Name: tinyPeriodicTask
Version: 1.4.5
Summary: Simple periodic execution of a function.
Home-page: https://github.com/fredericklussier/TinyPeriodicTask
Author: Frederick Lussier
Author-email: frederick.lussier@hotmail.com
License: MIT
Download-URL: https://github.com/fredericklussier/TinyPeriodicTask/tree/1.4.5
Description-Content-Type: UNKNOWN
Keywords: periodic,jobs,job scheduler,job scheduling
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Natural Language :: English


Simple periodic execution of a function at every laps 
of time or every day at specifique time.

The interval time is running in a deamon thread. This to ensure
the time has no interference to the main execution, and vice versa.

By design, when you start a tinyPeriodicTask instance,
the runner will delay the first call to the callback function
according to the interval.

When you create an instance of TinyPeriodicTask, you can add
any parameters you need to use when executing the callback. like this:



