Lightweight pipeline framework used by ekglib to define and run data processing steps.
Key pieces include:
example.py, exposed via the pipeline-example console script.See the top-level ekglib README for installation and how to invoke the CLI entrypoints.
pipeline-example - Run the example pipeline (defined in example.py)The example.py module provides a reference implementation showing how to:
# Run the example pipeline
pipeline-example --help
pipeline-example [options]
Or programmatically:
from ekglib.pipeline.example import main
# Run the example pipeline
main()