| Crates.io | polars-sql |
| lib.rs | polars-sql |
| version | 0.51.0 |
| created_at | 2022-10-28 07:38:48.465177+00 |
| updated_at | 2025-09-16 08:48:37.895933+00 |
| description | SQL transpiler for Polars. Converts SQL to Polars logical plans |
| homepage | https://www.pola.rs/ |
| repository | https://github.com/pola-rs/polars |
| max_upload_size | |
| id | 700212 |
| size | 379,402 |
polars-sql is a sub-crate of the Polars library, offering a SQL
transpiler. It allows for SQL query conversion to Polars logical plans.
To use polars-sql, add it as a dependency to your Rust project's Cargo.toml file:
[dependencies]
polars-sql = "0.30.0"
You can then import the crate in your Rust code using:
use polars_sql::*;
Important Note: This crate is not intended for external usage. Please refer to the main Polars crate for intended usage.