Skip to main content

Recently Updated Pages

Read parameters as DataFrame

Developer Manual Python - Workflow Interface

The following example loads a DataFrame for a provided parameter product in the workflow: # Impo...

Updated 2 months ago by Christian

Read a Product property

Developer Manual Python - Workflow Interface

The following example reads the value of a property for a given product: # Import voxel farm cli...

Updated 2 months ago by Christian

Workflow Definition

Developer Manual Python - Workflow Interface

# This code runs inside the Voxel Farm platform # Import the workflow lambda api from voxelfa...

Updated 2 months ago by Christian

Create Version from Blob Upload

Developer Manual Python - Workflow Interface

This example shows how to create a new version for a product by uploading files to a designated w...

Updated 2 months ago by Christian

Set exit code for Process Lambda

Developer Manual Python - Process Lambdas

The following example shows how to set the exit code for a Process Lambda: from voxelfarm import...

Updated 2 months ago by Christian

Log from Process Lambda

Developer Manual Python - Process Lambdas

The following example shows how to send a new line to the processing log: from voxelfarm import ...

Updated 2 months ago by Christian

Getting temp folder in Process Lambda

Developer Manual Python - Process Lambdas

This example shows how to get the path to the large capacity temp folder used for temporary stora...

Updated 2 months ago by Christian

Downloading files in Process Lambda

Developer Manual Python - Process Lambdas

This example shows how to download all files attached to an entity: from voxelfarm import proces...

Updated 2 months ago by Christian

Read inputs of Process Lambda

Developer Manual Python - Process Lambdas

The following example shows how to read inputs from a process lambda program: from voxelfarm imp...

Updated 2 months ago by Christian

Initialize Process Lambda

Developer Manual Python - Process Lambdas

The following example shows how to obtain the lambda_host interface: from voxelfarm import proce...

Updated 2 months ago by Christian

Read Process Results

Developer Manual Python - Process Lambdas

This example shows how to read the results of a Process Lambda execution. # The "project" variab...

Updated 2 months ago by Christian

Attach file to Process Lambda

Developer Manual Python - Process Lambdas

The following example shows how to attach a file from the temporary drive to the running process ...

Updated 2 months ago by Christian

Load and Write Pandas

Developer Manual Python - Report Lambdas

This example shows how to create a Pandas dataframe from voxels inside a Report Lambda program an...

Updated 2 months ago by admin

Volumetric Booleans in Report

Developer Manual Python - Report Lambdas

This example shows how to create volumetric boolean operations between volumetric datasets.   #...

Updated 2 months ago by admin

Read inputs of Report Lambda

Developer Manual Python - Report Lambdas

The following example shows how to read inputs from a report lambda program. mesh_entity = vf.in...

Updated 2 months ago by admin

Initialize Report Lambda

Developer Manual Python - Report Lambdas

This example shows how to initialize the Voxel Farm library in a report Lambda program. import v...

Updated 2 months ago by admin

Read Report Results

Developer Manual Python - Report Lambdas

This example shows how to read the results of a Report Lambda execution. # The "project" variabl...

Updated 2 months ago by admin

Run Process Lambda

Developer Manual Python - Process Lambdas

This example runs a lambda process in the platform: result = vf.create_process_entity( ...

Updated 2 months ago by Christian

Run Report Program

Developer Manual Python - Report Lambdas

The following example runs an existing Report Program with a given set of inputs. # We will use ...

Updated 2 months ago by admin

Define Report Program

Developer Manual Python - Report Lambdas

This example creates a new report program. result = vf.create_lambda_python( project=projec...

Updated 2 months ago by admin