Installation
Polars is a library and installation is as simple as invoking the package manager of the corresponding programming language.
pip install polars
cargo add polars
Importing
To use the library import it into your project
import polars as pl
use polars::prelude::*;