The Blink platform enables running Python, Bash, PowerShell and Node.js scripts using the following actions:

These Actions are preserved between the different steps of the Workflow execution. For example: if you create a file using Python, you can use it in a later Step using any programming language or CLI.

Run Bash Script

Executes a user provided bash script.

  1. Start by setting up a Working Directory using the Create Working Directory action.
  2. Next, write your bash script in the code block provided within the ‘Run Bash Script’ action.
  3. Finally, in the ‘Working Directory’ parameter of the ‘Run Bash Script’ action, enter the name of the Working Directory you created in step one.

Note

If there’s an error in a command in the middle of the script and the last command succeeds, the entire action will succeed, not revealing that some command may have failed.

ParameterDescription
CodeBash code to execute in the script.
Advanced -Working DirectoryThe name given to the working directory in the Create Working Directory action.
Advanced – Prerequisite PackagesSpecify the required package(s) for installation, including those available via apt-get.

Run Node.js Script

Executes user provided JS code.

  1. Start by setting up a Working Directory using the Create Working Directory action.
  2. Next, write your Node.js script in the code block provided within the ‘Run Node.js Script’ action.
  3. Finally, in the ‘Working Directory’ parameter of the ‘Run Node.js Script’ action, enter the name of the Working Directory you created in step one.
ParameterDescription
CodeJS code to execute in the script.
Advanced- Working DirectoryThe name given to the working directory in the Create Working Directory action.

Installing npm Packages

This is the Npm Install action, which allows you to install Node.js packages and use them with the Run Node.js Script action.

  1. Start by setting up a Working Directory using the Create Working Directory action.

  2. Next, specify the Node package you wish to install.

  3. Finally, in the ‘Working Directory’ parameter of the ‘Run Node.js Script’ action, enter the name of the Working Directory you created in step one.

ParameterDescription
PackageName of the Node.js package to install.
Working DirectoryThe name given to the working directory in the Create Working Directory action.

Run Python

This Action allows you to run a python script and retrieve its output.

The following packages come pre-installed for immediate use:

  • certifi==2022.12.7
  • chardet==4.0.0
  • idna==2.10
  • protobuf==3.18.3
  • requests==2.25.1
  • six==1.15.0
  • urllib3==1.26.5
  • dotmap==1.3.25
  • pandas==2.0.3
  • tabulate==0.9.0
  1. Start by setting up a Working Directory using the Create Working Directory action.
  2. Next, write your Python script in the code block provided within the ‘Run Python’ action.
  3. Finally, in the ‘Working Directory’ parameter of the ‘Run Python’ action, enter the name of the Working Directory you created in step one.
ParameterDescription
CodePython code to execute in the script.
VersionThe version of the Package
Working DirectoryThe name given to the working directory in the Create a Create Working Directory action.

Referencing inputs and step outputs in Python Actions

  • Option 1 - Variable picker: Use the variable picker to select the wanted information

  • Option 2 - Reference through the “context” object: Referencing of variables in Python steps can be performed using the automatically-created context object. For any Python Action, utilize the context object to fetch values of steps/input parameters/variables, or to set variables.

Installing pip Package

This is the Pip Install action, which allows you to install Python packages and use them with the Run Python action.

  1. To use this action, create a Working Directory using the Create Working Directory action.

  2. Specify which python packages you wish to install, by writing a new line separated list of packages, and run the step.

    • For git based packages use the following package name structure:

      git+<protocol>://<git-provider>/<git-user>/<git-repo>.git

      For Example:

      
      git+https://github.com/psf/requests.git
      
      git+ssh://git@github.com/psf/requests.git
      
      
  3. Finally, in the ‘Working Directory’ parameter of the Run Python action, enter the name of the Working Directory you created in step one.

Use a connection when installing from a private repository, there is no need for a connection when installing from public repositories.

ParameterDescription
Package ListNew line separated packages to install.
Version-
Working DirectoryThe name given to the working directory in the Create a Create Working Directory action.