Dagster integration library for Polars, providing IO managers, types, and utilities to read/write Polars DataFrames from/to various file formats (Parquet, CSV, Delta Lake, etc.). Current version: 0.27.9. Active development, follows Dagster releases.
pip install dagster-polarsVerified import paths — ran on the pinned version, not inferred.
Define an asset that returns a Polars DataFrame and use PolarsIOManager to persist it.
Update imports to `from dagster_polars import PolarsIOManager`.
Specify `extension` in the IO manager config or use `PolarsParquetIOManager` / `PolarsCSVIOManager` for explicit format.
Ensure assets return a `pl.DataFrame` or use `PolarsBaseIOManager` if you need custom behavior.