Kedro Viz shows you how your Kedro data pipelines are structured. You can use it to:
- See how your datasets and Python functions (nodes) are resolved in Kedro so that you can understand how your data pipeline is built
- Get a clear picture when you have lots of datasets and nodes by using tags to visualise sub-pipelines
- Search for nodes and datasets
Follow the Kedro-Viz installation instructions to get set up.
From your terminal, run:
kedro viz
This command will run a server on http://127.0.0.1:4141 and will open up your visualisation on a browser.
Note: If port
4141
is already occupied, you can run Kedro-Viz server on a different port by executingkedro viz --port <alternative-port>
.