---
title: "004"
description: "🔥 #kedrotips use find-kedro to assembly your pipelines"
date: 2020-05-31
published: false
tags:
  - kedro
template: hot-tip
---

🔥 #kedrotips use find-kedro to assembly your pipelines


``` python
from kedro.context import KedroContext
from find_kedro import find_kedro

class ProjectContext(KedroContext):
    def _get_pipelines(self) -> Pipeline:
        return find_kedro()
```
