Kedro Pipeline Create ===================== Kedro pipeline create is a command that makes creating new pipelines much easier. There is much less boilerplate that you need to write yourself. Date: August 22, 2021 Kedro pipeline create is a command that makes creating new pipelines much easier. There is much less boilerplate that you need to write yourself. https://youtu.be/HtyIKqlEoNw ## creating a new pipeline The kedro cli comes with the following command to scaffold out new pipelines. Note that it will not add it to your `pipeline_registry`, to be covered later, you will need to add it yourself. ``` bash kedro pipeline create example ``` ## results The directory structure that it creates looks like this. ``` bash tree src/kedro_conda/pipelines src/kedro_conda/pipelines ├── __init__.py └── example ├── __init__.py ├── nodes.py ├── pipeline.py └── README.md ```