Quote from
RichardF on 17. September 2020, 15:50
No, unfortunately there are no tutorials for plugins, but there is an example plugin in the plugins folder which you could take a look at. The steps how to create a new plugin are mentioned here: https://prism-pipeline.readthedocs.io/en/latest/index/feature_reference/#creating-a-new-plugin
Some python knowledge is definitely recommended.
You would need to create a plugin of type "custom" and add some code in the "onStepCreated" function. This function has a "path" argument, which contains the folderpath of a created step. You can use it like this:
self.core.entities.createCategory("myCategory", path=path)
No, unfortunately there are no tutorials for plugins, but there is an example plugin in the plugins folder which you could take a look at. The steps how to create a new plugin are mentioned here: https://prism-pipeline.readthedocs.io/en/latest/index/feature_reference/#creating-a-new-plugin
Some python knowledge is definitely recommended.
You would need to create a plugin of type "custom" and add some code in the "onStepCreated" function. This function has a "path" argument, which contains the folderpath of a created step. You can use it like this:
self.core.entities.createCategory("myCategory", path=path)