Reputation: 137
Cronicle
is similar to cronjobs
Here is GitHub link: https://github.com/jhuckaby/Cronicle#Plugins%20Tab
But I don't know how to add parameters in plugins.
It says
Parameters are passed to your Plugin via JSON, and as environment variables.
For example, you can use this to customize the PATH variable, if your Plugin requires it.
Upvotes: 0
Views: 767
Reputation: 137
In Python
import json,sys
path = json.load(sys.stdin)["params"]["path"]
Cronicle takes json as input
Upvotes: 1