ETL Frameworks
Python Data Loading Library
★ 4.5
Fast DataFrame library for Python and Rust
★ 4.8
pip install dltpip install polarspip install dltpip install polarsPython data engineers use dlt to replace hand-written ingestion scripts. You decorate a Python generator function as a `@dlt.source`, define resources with `@dlt.resource`, and call `pipeline.run()` — dlt handles schema creation, type casting, incremental state, and writing to your destination warehouse automatically.
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