Metadata-Version: 2.4
Name: dcnr-scheduler
Version: 0.2.0
Summary: Scheduling python functions for execution.
Project-URL: Homepage, https://dcnr-utilities.com
Author-email: Rocky Wilson <rocky.wilson@gopal.home.sk>
License: MIT
Keywords: python,scheduler
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# dcnr-scheduler

Minimal example package. After installation:

```python

from dcnr_scheduler import ScheduledRun, ScheduledPlan
from datetime import datetime

@ScheduledRun("at * on mon-fri freq 30/hour")
def print_msg(plan:ScheduledPlan, curr_dt:datetime):
    print(curr_dt, 'Hello world')

```