¶
find-kedro
is a small library to enhance your kedro experience. It looks through your modules to find kedro pipelines, nodes, and iterables (lists, sets, tuples) of nodes. It then assembles them into a dictionary of pipelines, each module will create a separate pipeline, and __default__
being a combination of all pipelines. This format is compatible with the kedro _create_pipelines
format.
¶
find-kedro
is deployed to pypi and can easily be pip
installed.
if you dont already have python and kedro installed follow the kedro prerequisites
pip install find-kedro
---> 100%
Successfully installed find-kedro
Example Response¶
{
"__default__": [
"create_int_iris",
],
"pipelines.data_engineering.pipeline": [
"create_int_iris",
],