Excel I/O support?
Hi maintainers,
Are there any plans or a roadmap to add Excel I/O support? I’ve created a small wrapper that adds readExcel/writeExcel methods using the ExcelJS engine. For a built-in solution, I’m curious:
- Is Excel I/O on the roadmap? Any expected timeline or prioritization?
- Would you accept a minimal ExcelJS-based implementation to start?
- How do you envision an engine-agnostic API (e.g. supporting ExcelJS, SheetJS/xlsx, or Rust’s Calamine via WASM)?
Thanks for any insight.
- Last time Excel support came up, the answer was:
.csv is good enough - In your project you are using
exceljswhich is not maintained anymore
-
I agree that CSV is enough — but not in my workplace, unfortunately 😉
-
It's true that ExcelJS development is slow (and was dormant for a while), but I wouldn’t call it unmaintained. The main alternative, SheetJS, isn’t fully open source.
-
I assumed that feature parity with Python Polars is kind of a guiding principle — and Python Polars has Excel I/O, of course.
I assumed that feature parity with Python Polars is kind of a guiding principle — and Python Polars has Excel I/O, of course.
so this was the case pretty early on, but as polars has evolved, more functionality has been written in python, such as the excel reader and many other readers. Unlike JS, python has much more mature ffi apis allowing bi directional data flows (calling rust from python & python from rust).
Unfortunately, Javascript does not easily support calling JS from rust, which greatly limits our ability to support some functionality available in python.
py-polars uses calamine as it's default Excel engine, hence it could be possible to add this on the Rust side.