Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 527 Bytes

python-runtime.md

File metadata and controls

12 lines (10 loc) · 527 Bytes

Python Runtime

The python runtime provides a simple mechanism to run a transform on a set of input data to produce a set of output data, all within a single python execution environment.

A PythonTransformLauncher class is provided that enables the running of the transform. For example,

launcher = PythonTransformLauncher(YourTransformConfiguration())
launcher.launch()

The YourTransformConfiguration class configures your transform. More details can be found in the transform tutorial.