https://kedro.org/ logo
#beginners-need-help
Title
# beginners-need-help
j

j c h a r l e s

12/14/2021, 12:18 AM
Copy code
def create_pipeline(**kwargs):
    build_list_of_entity_nodes = node(
        func=generate_nodes_from_entities,
        inputs="entities_csv",
        outputs="list_of_entity_nodes"
    )
    ## 
    #  How do I run my_expensive_entity_function across this list of nodes,
    #  which is determined through the contents of entities_csv
    return Pipeline([build_list_of_entity_nodes])