Python Kedro - Retrieve and use params inside registry_pipeleine.py
In one of my project, i want to build my pipeline dynamically (as a sequence of several pipelines) according values passed as parameter from the kedro CLI
For example, i have 3 pipelines (pipelineA ,pipelineB and pipelineC)
If my parameter passed from the CLI is ID=X then i want to build:
pipeline_to_run = pipelineA + pipelineB + pipelineC
If it is ID=Y, i want to build
pipeline_to_run = pipelineA + pipelineC
But i encounter an issue, i'm not able to retrieve the parameter value. Does someone...