The page you navigated to does not exist, so we brought you to the closest page to it.
flytekit.interactive.utils
| Property |
Type |
Description |
EXIT_CODE_SUCCESS |
int |
|
def execute_command(
cmd,
)
Execute a command in the shell.
| Parameter |
Type |
Description |
cmd |
|
|
def get_task_inputs(
task_module_name,
task_name,
context_working_dir,
)
Read task input data from inputs.pb for a specific task function and convert it into Python types and structures.
| Parameter |
Type |
Description |
task_module_name |
|
The name of the Python module containing the task function. |
task_name |
|
The name of the task function within the module. |
context_working_dir |
|
The directory path where the input file and module file are located. |
def load_module_from_path(
module_name,
path,
)
Imports a Python module from a specified file path.
| Parameter |
Type |
Description |
module_name |
|
The name you want to assign to the imported module. |
path |
|
The file system path to the Python file (.py) that contains the module you want to import. |