Skip to main content

xlsxturbo

High-performance Excel writer with automatic type detection. Written in Rust, usable from Python.

CI PyPI Python License: MIT

xlsxturbo exports pandas and polars DataFrames and CSV files to .xlsx. It uses Rust for the hot path and keeps the Python API small enough to drop straight into a script, a report job, or a batch pipeline. Roughly 7-9x faster than pandas + openpyxl on the reference benchmarks, with the Excel features those exports usually need — tables, conditional formatting, charts, data validation, images — available as focused keyword arguments rather than a workbook object model.

The .xlsx files themselves are written by rust_xlsxwriter — see Built on rust_xlsxwriter below.

Full documentation · Capability matrix · Changelog

Install

pip install xlsxturbo

Wheels are published for Python 3.10+ on Linux, Windows, and macOS. There are no runtime dependencies beyond the interpreter.

Export a DataFrame

import pandas as pd
from xlsxturbo import df_to_xlsx

df = pd.DataFrame({
    "product": ["Widget", "Gadget", "Gizmo"],
    "price": [19.99, 34.50, 8.75],
    "in_stock": [True, False, True],
    "restock": pd.to_datetime(["2024-03-01", "2024-03-15", "2024-04-01"]),
})

df_to_xlsx(df, "products.xlsx", table_style="Medium2", autofit=True)

Types carry across without configuration: numbers stay numbers, booleans become Excel booleans, and dates and datetimes become real Excel date values with a display format attached. polars DataFrames work the same way — neither library is a dependency.

Convert a CSV

from xlsxturbo import csv_to_xlsx

csv_to_xlsx("sales.csv", "sales.xlsx")

Types are detected from the file's text. There is also a command-line tool for the same job, though it is not included in the PyPI wheel — it has to be built from source. See CSV conversion.

What it can do

  • DataFrame and CSV export — pandas, polars, and CSV in, .xlsx out
  • Excel tables with 61 built-in styles, autofilter, and banded rows
  • Formatting — header and per-column styles, number formats, per-side borders, alignment, wrapping, auto-fit and explicit column widths, row heights, merged ranges, rich text
  • Conditional formatting — colour scales, data bars, icon sets
  • Formulas — calculated columns and workbook-level defined names
  • Native Excel charts and in-cell sparklines, both editable in Excel
  • Data validation — dropdowns, numeric ranges, text-length constraints
  • Cell-level extras — arbitrary cell writes, hyperlinks, comments, checkboxes, images, textboxes
  • Multi-sheet workbooks with per-sheet option overrides
  • Constant memory mode for very large exports, and optional parallel CSV parsing
  • Atomic writes — a failed export never truncates the file already at that path

The capability matrix is the authoritative list: it is generated from the source and shows which options each function accepts, which are overridable per sheet, and which survive constant-memory mode.

Performance

On 100,000 rows x 50 columns of mixed types, xlsxturbo is about 4.6x faster than polars, 7x faster than pandas + xlsxwriter, and 9.3x faster than pandas + openpyxl. Absolute timings are system-specific; the ratios are stable. Full tables, test systems, and methodology are on the performance page, and both benchmark suites live in benchmarks/ so you can measure your own hardware.

Known limitations

  • Write-only. xlsxturbo creates workbooks; it cannot open or modify an existing one.
  • Timezone-aware datetimes are written as their local wall-clock value — Excel has no timezone concept, so the UTC offset is not preserved.
  • Integers above 2^53 are written as text to avoid silent precision loss.
  • Durations (Timedelta / timedelta64) are written as text; Excel has no duration type.

The compatibility page has the complete list with the workaround for each.

Project status

Stable since 1.0.0. Everything reachable from import xlsxturbo without a leading underscore is covered by Semantic Versioning and will not break before 2.0.0; anything removed gets a DeprecationWarning naming its replacement and its removal version, for at least one minor release and at least six months.

The stability page is the full statement — the public surface named exhaustively, what does and does not count as breaking, and the supported Python and platform matrices.

  • Tested in CI on Python 3.10 and 3.12 across Linux, Windows, and macOS, plus Python 3.14 on Linux. One abi3 wheel per platform serves 3.10 through 3.14. Python 3.9 was dropped in 1.1.0; a 3.9 interpreter resolves to 1.0.0, which stays on PyPI.
  • Advanced Excel features are exposed through focused parameters rather than a full workbook object model. That is a deliberate scope boundary, not a gap to be filled.

Built on rust_xlsxwriter

Every byte of the .xlsx files xlsxturbo produces is written by rust_xlsxwriter, John McNamara's Rust Excel writer (MIT licensed). It is the one substantial dependency, and it is not an implementation detail you can ignore:

  • What xlsxturbo can do is bounded by what rust_xlsxwriter can do. The features on the capability matrix are the ones it exposes; xlsxturbo's job is type detection, the DataFrame and CSV pipeline, option validation, and a Python API — not the XLSX format itself.
  • Bugs in the generated file are usually upstream. When one is, it is reported to rust_xlsxwriter rather than papered over here — most recently #185, filed 2026-08-15 and fixed in 0.98.1 the next morning. A file Excel refuses to open is still worth reporting to us; we will trace it and take it upstream.
  • The xlsxwriter in the benchmark table is a different project — that is XlsxWriter, the pure-Python library by the same author, and one of the things xlsxturbo is measured against.

If you write Excel files from Rust, use rust_xlsxwriter directly; xlsxturbo exists to put it behind a Python DataFrame API. rust_xlsxwriter's notice, and those of every other crate compiled into the wheel, are in THIRD-PARTY-LICENSES.md, which is generated from the dependency tree rather than maintained by hand.

Contributing

Setup takes about five minutes and is described in CONTRIBUTING.md, along with the exact lint, type, and test commands CI runs. Security reports go through the process in SECURITY.md.

License

MIT — see LICENSE.

The wheel contains compiled code from the Rust crates listed above, so their notices travel with it: THIRD-PARTY-LICENSES.md, also installed as xlsxturbo-<version>.dist-info/licenses/THIRD-PARTY-LICENSES.md. It is generated from the dependency tree by python scripts/gen_third_party_licenses.py --write; do not edit it by hand.

Release files for xlsxturbo 1.4.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for xlsxturbo 1.4.1
File Size Uploaded
xlsxturbo-1.4.1.tar.gz 517.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for xlsxturbo 1.4.1
File
xlsxturbo-1.4.1-cp310-abi3-win_amd64.whl CPython 3.10 abi3 Windows x86-64 Details
xlsxturbo-1.4.1-cp310-abi3-manylinux_2_28_x86_64.whl CPython 3.10 abi3 Linux glibc 2.28+ x86-64 Details
xlsxturbo-1.4.1-cp310-abi3-manylinux_2_28_aarch64.whl CPython 3.10 abi3 Linux glibc 2.28+ ARM64 Details
xlsxturbo-1.4.1-cp310-abi3-macosx_11_0_arm64.whl CPython 3.10 abi3 macOS 11.0+ ARM64 Details
xlsxturbo-1.4.1-cp310-abi3-macosx_10_12_x86_64.whl CPython 3.10 abi3 macOS 10.12+ x86-64 Details

Total release size: 6.8 MB

Release files / xlsxturbo-1.4.1.tar.gz

Download URL xlsxturbo-1.4.1.tar.gz
Size 517.8 kB
Tags Source
SHA-256 checksum
How to use checksums
d0b063377a16f62f9300d13a35a4d8d74ee8e228585049ce5511acd3f6fffa91
BLAKE2b-256 checksum
How to use checksums
fba7f935677a04c9e6331fbd07bc679f09236060d3829a410f492deea42693ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / xlsxturbo-1.4.1-cp310-abi3-win_amd64.whl

Download URL xlsxturbo-1.4.1-cp310-abi3-win_amd64.whl
Size 1.3 MB
Tags CPython 3.10 Windows x86-64 abi3
SHA-256 checksum
How to use checksums
97a9ac0f3bde0b4d0c45710ba2864706c5ddf0a2c4773a0bd623031b1bd0d8ec
BLAKE2b-256 checksum
How to use checksums
e111d71b79cc7613acce9152a20554d1855ff8211e72e4a654c785899201efc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / xlsxturbo-1.4.1-cp310-abi3-manylinux_2_28_x86_64.whl

Download URL xlsxturbo-1.4.1-cp310-abi3-manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64 abi3
SHA-256 checksum
How to use checksums
59e3fb192967e23ec0fe6a6f4b64a776dfe35d684e0b7ef45724f6ed32b72f3c
BLAKE2b-256 checksum
How to use checksums
e4fad4ebcd35bdfd6e098c6abf00c9e307f5bbc3aa8ebdaa0772760c6f60ec96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / xlsxturbo-1.4.1-cp310-abi3-manylinux_2_28_aarch64.whl

Download URL xlsxturbo-1.4.1-cp310-abi3-manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64 abi3
SHA-256 checksum
How to use checksums
b4296b2289e92e3426fa0063baadf539429b9316dac47f1c6b3baee1bf7b56a3
BLAKE2b-256 checksum
How to use checksums
5dcd04467b4dbaf177cdc8133b09003db48e7b934ab2229dff602e01dd73619e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / xlsxturbo-1.4.1-cp310-abi3-macosx_11_0_arm64.whl

Download URL xlsxturbo-1.4.1-cp310-abi3-macosx_11_0_arm64.whl
Size 1.2 MB
Tags CPython 3.10 abi3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
92b826de46e0ba2250c4795908cc7cc34b3f192b1670968ae7b78d693aa9a988
BLAKE2b-256 checksum
How to use checksums
dc0a0d0b732375eff1a9cc5d52fd175ac0cff3fd21279dbb1fb3f1d74f88aa7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release files / xlsxturbo-1.4.1-cp310-abi3-macosx_10_12_x86_64.whl

Download URL xlsxturbo-1.4.1-cp310-abi3-macosx_10_12_x86_64.whl
Size 1.3 MB
Tags CPython 3.10 abi3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
5287da85593e33b3b6a50393c3d5bfdedd8bb120a14446bf04d5834622c847e3
BLAKE2b-256 checksum
How to use checksums
b0dbf65c6a42baff62b27b35551b0144bcc54de1ba1ccb3be1d05be676fa6bc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 6, 2026.

Transparency log

Release history Release notifications | RSS feed

1.6.0

6 release files

1.5.1

6 release files

1.5.0

6 release files

This release

1.4.1 This release

6 release files

1.4.0

6 release files

1.3.0

6 release files

1.2.0

6 release files

1.1.2

6 release files

1.1.1

6 release files

1.1.0

6 release files

1.0.0

6 release files

0.21.0

6 release files

0.20.0

6 release files

0.19.1

6 release files

0.19.0

6 release files

0.18.0

6 release files

0.17.2

6 release files

0.17.1

6 release files

0.16.2

6 release files

0.16.1

6 release files

0.16.0

6 release files

0.15.5

6 release files

0.15.1

6 release files

0.15.0

6 release files

0.14.1

6 release files

0.14.0

6 release files

0.13.0

6 release files

0.12.5

6 release files

0.12.3

7 release files

0.12.2

6 release files

0.12.1

6 release files

0.12.0

6 release files

0.11.0

6 release files

0.10.6

6 release files

0.10.4

6 release files

0.10.3

6 release files

0.10.1

6 release files

0.9.0

6 release files

0.8.0

6 release files

0.7.0

8 release files

0.6.0

8 release files

0.4.1

8 release files

0.4.0

8 release files

0.3.0

8 release files

0.1.0

8 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page