Skip to main content

Blazingly fast DataFrame library

Project description

Polars logo

Documentation: Python - Rust - Node.js - R | StackOverflow: Python - Rust - Node.js - R | User guide | Discord

Polars: Extremely fast Query Engine for DataFrames, written in Rust

Polars is an analytical query engine written for DataFrames. It is designed to be fast, easy to use and expressive. Key features are:

  • Lazy | Eager execution
  • Streaming (larger-than-RAM datasets)
  • Query optimization
  • Multi-threaded
  • Written in Rust
  • SIMD
  • Powerful expression API
  • Front end in Python | Rust | NodeJS | R | SQL
  • Apache Arrow Columnar Format

To learn more, read the user guide.

Performance 🚀🚀

Blazingly fast

Polars is very fast. In fact, it is one of the best performing solutions available. See the PDS-H benchmarks results.

Lightweight

Polars is also very lightweight. It comes with zero required dependencies, and this shows in the import times:

  • polars: 70ms
  • numpy: 104ms
  • pandas: 520ms

Handles larger-than-RAM data

If you have data that does not fit into memory, Polars' query engine is able to process your query (or parts of your query) in a streaming fashion. This drastically reduces memory requirements, so you might be able to process your 250GB dataset on your laptop. Collect with collect(engine='streaming') to run the query streaming.

Setup

Python

Install the latest Polars version with:

pip install polars

See the User Guide for more details on optional dependencies

To see the current Polars version and a full list of its optional dependencies, run:

pl.show_versions()

Contributing

Want to contribute? Read our contributing guide.

Managed/Distributed Polars

Do you want a managed solution or scale out to distributed clusters? Consider our offering and help the project!

Python: compile Polars from source

If you want a bleeding edge release or maximal performance you should compile Polars from source.

This can be done by going through the following steps in sequence:

  1. Install the latest Rust compiler
  2. Install maturin: pip install maturin
  3. cd py-polars and choose one of the following:
    • make build, slow binary with debug assertions and symbols, fast compile times
    • make build-release, fast binary without debug assertions, minimal debug symbols, long compile times
    • make build-nodebug-release, same as build-release but without any debug symbols, slightly faster to compile
    • make build-debug-release, same as build-release but with full debug symbols, slightly slower to compile
    • make build-dist-release, fastest binary, extreme compile times

By default the binary is compiled with optimizations turned on for a modern CPU. Specify LTS_CPU=1 with the command if your CPU is older and does not support e.g. AVX2.

Note that the Rust crate implementing the Python bindings is called py-polars to distinguish from the wrapped Rust crate polars itself. However, both the Python package and the Python module are named polars, so you can pip install polars and import polars.

Using custom Rust functions in Python

Extending Polars with UDFs compiled in Rust is easy. We expose PyO3 extensions for DataFrame and Series data structures. See more in https://github.com/pola-rs/polars/tree/main/pyo3-polars.

Going big...

Do you expect more than 2^32 (~4.2 billion) rows? Compile Polars with the bigidx feature flag or, for Python users, install pip install polars-u64-idx.

Don't use this unless you hit the row boundary as the default build of Polars is faster and consumes less memory.

Legacy

Do you want Polars to run on an old CPU (e.g. dating from before 2011), or on an x86-64 build of Python on Apple Silicon under Rosetta? Install pip install polars-lts-cpu. This version of Polars is compiled without AVX target features.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

polars_runtime_compat-1.34.0b4.tar.gz (4.9 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

polars_runtime_compat-1.34.0b4-cp39-abi3-win_arm64.whl (35.8 MB view details)

Uploaded CPython 3.9+Windows ARM64

polars_runtime_compat-1.34.0b4-cp39-abi3-win_amd64.whl (39.7 MB view details)

Uploaded CPython 3.9+Windows x86-64

polars_runtime_compat-1.34.0b4-cp39-abi3-manylinux_2_24_aarch64.whl (36.9 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.24+ ARM64

polars_runtime_compat-1.34.0b4-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (40.0 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ x86-64

polars_runtime_compat-1.34.0b4-cp39-abi3-macosx_11_0_arm64.whl (35.9 MB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

polars_runtime_compat-1.34.0b4-cp39-abi3-macosx_10_12_x86_64.whl (39.3 MB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

Details for the file polars_runtime_compat-1.34.0b4.tar.gz.

File metadata

  • Download URL: polars_runtime_compat-1.34.0b4.tar.gz
  • Upload date:
  • Size: 4.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for polars_runtime_compat-1.34.0b4.tar.gz
Algorithm Hash digest
SHA256 07602df4bb1c3b90f739ac42997474a2ce78cf1f9975f30b32143d47e959504e
MD5 4d4d3e01d7546d270e01467d0a9a30b1
BLAKE2b-256 aa3b8db244b6b7d70c36ed67f50a11dd61e4be6fa2576264259d8e28394862e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for polars_runtime_compat-1.34.0b4.tar.gz:

Publisher: release-python.yml on pola-rs/polars

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polars_runtime_compat-1.34.0b4-cp39-abi3-win_arm64.whl.

File metadata

File hashes

Hashes for polars_runtime_compat-1.34.0b4-cp39-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 315709b96a8d0a1f356aaeb587fcb751789a38864177030a6ba532d53404263c
MD5 99a62433b6b1c8cecfeec5703fb5a965
BLAKE2b-256 c3dd109b1abde63e8902ec9bb5a7d50b2cb0063b575da6f5f1498a600e7117f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for polars_runtime_compat-1.34.0b4-cp39-abi3-win_arm64.whl:

Publisher: release-python.yml on pola-rs/polars

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polars_runtime_compat-1.34.0b4-cp39-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for polars_runtime_compat-1.34.0b4-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 27a2486e5d8e4009ee646d9b137573f08ba0912682682619b252f08ec54bca3a
MD5 0772ca03c622fadc65c22623efab6079
BLAKE2b-256 9b876cb9889600529703f8b85b3cfd18e4e2d5a913e97315bdaf836cf9b0a2e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for polars_runtime_compat-1.34.0b4-cp39-abi3-win_amd64.whl:

Publisher: release-python.yml on pola-rs/polars

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polars_runtime_compat-1.34.0b4-cp39-abi3-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for polars_runtime_compat-1.34.0b4-cp39-abi3-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 2fb4c422864618a4d2eec0414dfd7da679dc147ca202f4e5c6001a5d4fecf380
MD5 944cd35ee16979ad673a40ea7fa64a4f
BLAKE2b-256 f516456dfc8c19d9f4190432e3e239cffe143e41de0aa2f472917f02fdefb51f

See more details on using hashes here.

Provenance

The following attestation bundles were made for polars_runtime_compat-1.34.0b4-cp39-abi3-manylinux_2_24_aarch64.whl:

Publisher: release-python.yml on pola-rs/polars

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polars_runtime_compat-1.34.0b4-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_runtime_compat-1.34.0b4-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed304583078bcea6e6d2590fb502af27b1fb45b0ba17997adbbe0d9e531adeaf
MD5 d66771e68e7603779af167fe2ce06f10
BLAKE2b-256 4fdebda6941ab86cc028f31cc340b4f4c50ea539e646e2adeb6a78d3c413c7af

See more details on using hashes here.

Provenance

The following attestation bundles were made for polars_runtime_compat-1.34.0b4-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-python.yml on pola-rs/polars

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polars_runtime_compat-1.34.0b4-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polars_runtime_compat-1.34.0b4-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 232b5609947cb76f51e279a24109c64548a87d0757b319035bc627f0868bf32b
MD5 5486e78742a6dbff673170ae7077a414
BLAKE2b-256 b24ca3af97dd4db1b0a918aa0a49850845988c8ffd09fb614d60528c0d7b9ed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for polars_runtime_compat-1.34.0b4-cp39-abi3-macosx_11_0_arm64.whl:

Publisher: release-python.yml on pola-rs/polars

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polars_runtime_compat-1.34.0b4-cp39-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for polars_runtime_compat-1.34.0b4-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7236cd90a54983bca28b3d123a6fa5e5cf2e16050ef9ec4a467b4d285166cd5c
MD5 1cca2b72863fd65f0359d40d034d4e89
BLAKE2b-256 07bee74686fec83993d9a93e5c33c80ac274619f1838911259ea86c0491b33d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for polars_runtime_compat-1.34.0b4-cp39-abi3-macosx_10_12_x86_64.whl:

Publisher: release-python.yml on pola-rs/polars

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page