hi folks, is there a CLI command to show the avail...
# questions
j
hi folks, is there a CLI command to show the available pipelines? something like
kedro pipeline list
or similar
m
kedro registry list
shows you all pipelines defined in your
pipeline_registry.py
file. However, if you haven’t changed anything in that file it will just show
__default__
j
thanks @Merel, that's exactly what I wanted. wondering if
list
and
describe
could become part of the
kedro pipeline
subcommand 😅 we'd have
list, describe, create, delete
, which is quite nice (and removes the need of one extra subcommand)
m
Yeah it’s a good point. We’d need to clearly define what the difference is between a “registered” pipeline and just pipelines that exist, but aren’t part of any run command e.g. if the user has changed what’s run by default.
This could be part of the Improve Kedro CLI milestone: https://github.com/kedro-org/kedro/milestone/24
j
I'll open an issue 🏃🏼