An open API service indexing awesome lists of open source software.

https://github.com/eandersson/storm.scheduler

Simple task scheduler with a natural syntax.
https://github.com/eandersson/storm.scheduler

library python python3 scheduling task task-scheduler

Last synced: 2 months ago
JSON representation

Simple task scheduler with a natural syntax.

Awesome Lists containing this project

README

        

Storm.Scheduler
===============
A simple task scheduling library.

.. code-block:: shell

pip install storm.scheduler

Example usage
-------------
A simple example would look something like this.

.. code:: python

import storm_scheduler

schedule = storm_scheduler.Scheduler()
schedule.task(hello_world).every(3)
schedule.task(my_function).every(5, 'minutes')
schedule.loop()