https://kedro.org/ logo
#questions
Title
# questions
j

Juan Luis

03/08/2023, 10:42 AM
hi folks, is there a CLI command to show the available pipelines? something like
kedro pipeline list
or similar
m

Merel

03/08/2023, 10:51 AM
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

Juan Luis

03/08/2023, 10:54 AM
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

Merel

03/08/2023, 10:56 AM
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

Juan Luis

03/08/2023, 10:57 AM
I'll open an issue 🏃🏼
13 Views