Execute a Python script from a file. The plugin provides the ability for the user to define additional inputs that will be available to the scripts when executing. In addition, the plugin provides the ability for the user to define any number of outputs from the execution of the script that could be utilized in subsequent steps in the workflow.
Target Properties
...
Property Name
...
Property Code
...
Required
...
Description
Project Properties
...
Property Name
...
Property Code
...
Required
...
Description
Inputs
Input Name | Input Code | Required | Description |
---|---|---|---|
File Path |
| Yes | Path to the file to run. |
...
Code Block | ||
---|---|---|
| ||
import os
TEST_INP = os.getenv('TEST_INP') |
...