0.1.dev2184+g1e0cbe7.d20250401

flytekit.interactive.utils

Directory

Methods

Method Description
execute_command() Execute a command in the shell.
get_task_inputs() Read task input data from inputs.
load_module_from_path() Imports a Python module from a specified file path.

Variables

Property Type Description
EXIT_CODE_SUCCESS int

Methods

execute_command()

def execute_command(
    cmd,
)

Execute a command in the shell.

Parameter Type
cmd

get_task_inputs()

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
task_module_name
task_name
context_working_dir

load_module_from_path()

def load_module_from_path(
    module_name,
    path,
)

Imports a Python module from a specified file path.

Parameter Type
module_name
path