xontrib-schedule

Xonsh Task Scheduling


Keywords
scheduler, xonsh, xontrib
License
MIT
Install
pip install xontrib-schedule==0.0.1

Documentation

xontrib-schedule

Defines the schedule builtin, which is strongly based on schedule with some additions for non-periodic tasks:

schedule.when(<time>).do() performs a task at some absolute time in the future.

schedule.delay(<time>).do() performs a task after a delay.

This module prioritizes task execution over accurate timing.

Installation / Usage

To install use pip:

$ pip install xontrib-schedule

Or clone the repo:

$ git clone https://github.com/astronouth7303/xontrib-schedule.git $ python setup.py install

And then load it:

$ xontrib load schedule

Contributing

Fork, submit a pull request, and we'll have a discussion. Keep to PEP8.

Example

TBD

Credits

This package was created with cookiecutter and the xontrib template.