Python - Process Lambdas
Run Process Lambda
This example runs a lambda process in the platform: result = vf.create_process_entity( ...
Read Process Results
This example shows how to read the results of a Process Lambda execution. # The "project" variab...
Initialize Process Lambda
The following example shows how to obtain the lambda_host interface: from voxelfarm import proce...
Read inputs of Process Lambda
The following example shows how to read inputs from a process lambda program: from voxelfarm imp...
Downloading files in Process Lambda
This example shows how to download all files attached to an entity: from voxelfarm import proces...
Getting temp folder in Process Lambda
This example shows how to get the path to the large capacity temp folder used for temporary stora...
Attach file to Process Lambda
The following example shows how to attach a file from the temporary drive to the running process ...
Log from Process Lambda
The following example shows how to send a new line to the processing log: from voxelfarm import ...
Set exit code for Process Lambda
The following example shows how to set the exit code for a Process Lambda: from voxelfarm import...