-
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Rahmad Afandi edited this page Jun 7, 2026
·
2 revisions
High-performance Excel (.xlsx) and CSV/TSV generation for Python, powered by Rust via PyO3. Roughly 7–9× faster than XlsxWriter for Excel and ~5–6× faster than the stdlib csv for CSV.
from rustpy_xlsxwriter import FastExcel
FastExcel("out.xlsx").sheet("Sheet1", [{"name": "Alice", "age": 30}]).save()- Getting Started — install, first file, input types
- Format API — fonts, colors, borders, number formats
- DataFrames — pandas, polars, Arrow zero-copy
- CSV and TSV — fast CSV output + formula-injection guard
- Benchmarks — numbers vs XlsxWriter / stdlib csv
- Limitations — what's not supported yet