How to get a list of pipelines (in a CLI utility)?...
# beginners-need-help
m
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