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.
- Host: GitHub
- URL: https://github.com/eandersson/storm.scheduler
- Owner: eandersson
- License: mit
- Created: 2021-10-03T07:25:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-03T23:18:51.000Z (over 3 years ago)
- Last Synced: 2025-01-19T06:41:21.703Z (4 months ago)
- Topics: library, python, python3, scheduling, task, task-scheduler
- Language: Python
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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()