Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

FDPYTHON_INP_FILE_PATH

Yes

Path to the file to run.

...

Code Block
languagepy
import os
TEST_INP = ​os.getenv('TEST_INP')

...