ETL Frameworks
Fast DataFrame library for Python and Rust
★ 4.8
Python API for Apache Spark
★ 4.8
pip install polarspip install pysparkpip install polarspip install pysparkPython 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.
PySpark is the standard Python interface for large-scale ETL on Hadoop and cloud clusters. Data engineers write transformation logic using the DataFrame API — reading from S3 or Hive, applying joins and aggregations, then writing to Delta Lake or a data warehouse — with Spark distributing the work across hundreds of nodes.
Individual Tool Pages