Ejemplo n.º 1
0
def separator_from_task():
    text = PrintOp("text", "a,b,c").output
    separator = PrintOp("separator", ",").output
    with Loop.from_string(text, separator):
        PrintOp("print")
Ejemplo n.º 2
0
def pipeline(my_pipe_param: int = 10):
    loop_args = '1,2'
    with Loop.from_string(loop_args, separator=',') as item:
        op1_template = components.load_component_from_text(op1_yaml)
        op1_template(item, my_pipe_param)
Ejemplo n.º 3
0
def separator_from_param(text: str = 'a,b,c', separator: str = ','):
  with Loop.from_string(text, separator):
    PrintOp("print")