Index
Kedro Light provides a minimal interface to Kedro and Kedro-Viz. You can install it via PyPI with
pip install kedro-light
data_catalogcreates aDataCatalog(for loading/saving named datasets)nodecreates aNode(for transforming named datasets)pipelinecreates aPipelineusing Kedro's modular pipeline constructor (this defines a DAG of data transformations)runruns a pipelineshowserves a web app that displays a collection of pipelines
A condensed usage example is given below. Further details can be found here.
1 2 3 4 5 6 7 8 9 10 11 12 | |