https://kedro.org/ logo
m

mjmare

06/17/2022, 2:12 PM
How to get a list of pipelines (in a CLI utility)? In the past (<1.18) I did something like this:
Copy code
metadata = bootstrap_project(project_dir)

with KedroSession.create(metadata.package_name) as session:
    context = session.load_context()
    pipeline_names = sorted(context.pipelines.keys())
Now, however, context.pipelines does not exist anymore. What is the proper way to do this? TIA