polars-runtime-64
Blazingly fast DataFrame library
What it is and what it does
This package is a DataFrame query engine written in Rust that prioritizes speed and memory efficiency. It supports both lazy (optimized) and eager execution modes, allowing you to compose complex analytical queries using a chainable expression API. The lazy execution model optimizes your query plan before running it, and the streaming engine can process datasets that exceed available RAM by processing data in chunks.
You install it via pip and import it as `polars`. It has no runtime dependencies beyond the compiled Rust library bundled in the wheel. It's designed for analytical workloads—filtering, grouping, aggregating, and sorting large datasets—and integrates with Apache Arrow for zero-copy data sharing. The package is actively maintained, widely used (top 15000 PyPI packages by downloads), and carries no known security vulnerabilities.
Use it for:
- Process multi-gigabyte CSV or Parquet files on a machine with limited RAM using the streaming engine.
- Build analytical pipelines that filter, group, and aggregate time-series or transactional data with lazy query optimization.
- Compose complex multi-step queries (joins, window functions, aggregations) that benefit from automatic query optimization.
- Interoperate with Arrow-based tools and libraries by leveraging zero-copy columnar data sharing.
- Execute vectorized data transformations where compiled Rust execution delivers measurable performance gains.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
A Rust-based analytical query engine for DataFrames that executes lazy and eager queries with multi-threaded, vectorized performance and can process datasets larger than available RAM through streaming.
Yes. This package is production-stable, actively maintained, permissively licensed, and carries no known vulnerabilities. Install it if you need fast analytical queries on large datasets or want performance-critical data transformation work. The medium install friction (compiled wheels, Python 3.10+ requirement) is standard for Rust-based Python packages and not a barrier for most modern environments.
Install
polars-runtime-64 on PyPI
pip
pip install polars-runtime-64uv
uv add polars-runtime-64poetry
poetry add polars-runtime-64Installing polars-runtime-64
Before you install
Medium install friction due to compiled Rust binaries; wheels are pre-built for common platforms (macOS, Linux, Windows on x86_64 and ARM64) but require Python 3.10+. Active maintenance with recent release (13 days old) and strong repository signals (39355 stars, current commit 2026-08-14).
License in practice
MIT license (permissive) allows commercial and private use with minimal restrictions—suitable for most projects without licensing concerns.
Quickstart
pip install polars-runtime-64
import polars as pl
df = (
pl.scan_parquet("orders.parquet")
.filter(pl.col("status") == "shipped")
.group_by("customer_id")
.agg(pl.col("amount").sum().alias("total"))
.collect()
)
Requires Python 3.10 or later; pre-built wheels target modern CPUs (AVX2 support assumed unless LTS_CPU=1 flag used during source compilation).
Verify before relying
- Whether GPU acceleration (NVIDIA) is included in the standard PyPI wheel or requires separate installation.
- Memory overhead of lazy query optimization and expression compilation for typical workloads.
- Performance comparison to other dataframe libraries on small-to-medium datasets.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | medium — platform-specific wheel |
| Runtime dependencies | none |
| Maintenance | actively maintained — 13 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 161,231/month — #10,639 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: polars_runtime_64-1.43.2-cp310-abi3-macosx_10_12_x86_64.whl; polars_runtime_64-1.43.2-cp310-abi3-macosx_11_0_arm64.whl; polars_runtime_64-1.43.2-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl; polars_runtime_64-1.43.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl; polars_runtime_64-1.43.2-cp310-abi3-musllinux_1_2_aarch64.whl; polars_runtime_64-1.43.2-cp310-abi3-musllinux_1_2_x86_64.whl; polars_runtime_64-1.43.2-cp310-abi3-win_amd64.whl; polars_runtime_64-1.43.2-cp310-abi3-win_arm64.whl
Keywords: dataframe, arrow, out-of-core
Tags
More Scientific/Engineering packages
NumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
pandaspandas provides fast, flexible data structures…
permissive · top 100 on PyPI
scipyscipy provides numerical algorithms for…
permissive · top 100 on PyPI
scikit-learnscikit-learn provides a comprehensive Python…
permissive · top 1,000 on PyPI
dilldill extends Python's pickle module to…
permissive · top 1,000 on PyPI
multiprocessMultiprocess is an enhanced fork of Python's…
permissive · top 1,000 on PyPI
polarsPolars is a DataFrame query engine written in…
permissive · top 1,000 on PyPI
polars-lts-cpupolars-lts-cpu is a CPU-optimized DataFrame…
permissive · top 15,000 on PyPI
polars-runtime-32Polars-runtime-32 is a compiled runtime…
permissive · top 1,000 on PyPI
polars-runtime-compatPolars-runtime-compat provides binary wheels…
permissive · top 15,000 on PyPI
polars-cloudPolars Cloud extends the Polars DataFrame…
permissive · top 15,000 on PyPI
polars-dsPolars-ds adds data science and machine…
permissive · top 15,000 on PyPI
polars-olsPolars OLS provides Rust-optimized linear…
unclear · top 15,000 on PyPI
grizzgrizz provides composable ingestors and…
permissive · top 15,000 on PyPI
arcticdbArcticDB is a serverless DataFrame database…
unclear · top 15,000 on PyPI
patitoPatito combines pydantic models with polars…
permissive · top 15,000 on PyPI