DataFrames for
the new era

29M+
Downloads to date
25k+
Github stars
Get started
Data swooshes
Fast01Fast

Polars is written from the ground up with performance in mind. Its multi-threaded query engine is written in Rust and designed for effective parallelism. Its vectorized and columnar processing enables cache-coherent algorithms and high performance on modern processors.

Easy to use02Easy to use

You will feel right at home with Polars if you are familiar with data wrangling. Its expressions are intuitive and empower you to write code which is readable and performant at the same time.

Open source03Open source

Polars is and always will be open source. Driven by an active community of developers, everyone is encouraged to add new features and contribute. Polars is free to use under the MIT license.

Built by developers for developers to achieve up to 50x performance

Why use Polars

Polars was benchmarked against several other solutions on the independent TPC-H Benchmark. This benchmark aims to replicate data wrangling operations used in practice. Polars easily trumps other solutions due to its parallel execution engine, efficient algorithms and use of vectorization with SIMD (Single Instruction, Multiple Data). Compared to pandas, it can achieve more than 30x performance gains.

Learn more →

The benchmark was performed on a n2-highmem-16 with scale factor 10 including IO. The queries are open source.

Performance illustration

Quick install

Polars is easy to install using your standard package manager. Select your programming language and get started!

pip install polars
[dependencies]
polars = { version = "x", features = ["lazy", ...]}
const pl = require('nodejs-polars');
Support 1
Support 2
Support 3
Support 4
Support 5
Support 6
Support 7
Support 8
Support 9
Support 10
Support 11
Support 12
Support 13
Support 14
Support 15
Support 16

Support

Support for all common data formats

Polars supports reading and writing to all common data formats. This allows you to easily integrate Polars with your existing data stack.

  • Text: CSV & JSON
  • Binary: Parquet, Delta Lake, AVRO & Excel
  • IPC: Feather, Arrow
  • Databases: MySQL, Postgres, SQL Server, Sqlite, Redshift & Oracle
  • Cloud storage: S3, Azure Blob & Azure File

How Polars will
make your life easier

01

Easy
to use

Write your queries the way they were intended. Polars will determine the most efficient way to execute them using its query optimizer.

02

Embarrassingly
parallel

Complete your queries faster! Polars fully utilizes the power of your machine by dividing the workload among the available CPU cores without any additional configuration or serialization overhead.

03

Apache
Arrow

Polars utilizes the Apache Arrow memory model allowing you to easily integrate with existing tools in the data landscape. It supports zero-copy data sharing for efficient collaboration.

04

Close to
the metal

Polars is written from the ground up, designed close to the machine and without external dependencies. This allows for full control of the ecosystem (API, memory & execution).

05

Written
in Rust

The core of Polars is written in Rust, one of the fastest growing programming languages in the world. Rust allows for high performance with fine-grained control over memory.

06

Out
of core

Want to process large data sets that are bigger than your memory? Our streaming API allows you to process your results efficiently, eliminating the need to keep all data in memory.

1
2
4
3
5
6
7
8
9
10
11
12