Home
Kedro Light provides a minimal interface to Kedro and Kedro-Viz. You can install it via PyPI with
Kedro Light is intended for when you want to use Kedro's data catalog system and pipeline objects (to separate data from logic), as well as its visualisation capabilities, but don't want to embrace the full Kedro project structure and workflow. Kedro Light defines/re-exports the following functions: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)runandrun_noderun a pipeline or node respectivelyshowserves a web app that displays a collection of pipelines
A condensed usage example is given below. Further details can be found here.