ETL Frameworks
Lightweight ETL Framework
★ 4.2
Fast DataFrame library for Python and Rust
★ 4.8
pip install bonobopip install polarspip install bonobopip install polarsBonobo is used for straightforward ETL scripts where simplicity matters. Engineers define a pipeline graph by connecting Python functions — one reads rows from a CSV, another cleans them, a third writes to a database — and Bonobo handles the plumbing, parallelism, and error propagation between nodes.
Python data engineers use Polars as a high-performance pandas replacement for processing large datasets on a single machine. Its lazy API lets you chain transformations like .filter(), .group_by(), and .join() that Polars optimizes before executing. Common in data pipelines where pandas runs out of memory or becomes too slow, but where spinning up a Spark cluster is overkill.
Individual Tool Pages