PyExcelerate
Accelerated Excel XLSX Writing Library for Python 2/3
What it is and what it does
PyExcelerate is a Python library for writing Excel-compatible XLSX files with a focus on speed. It provides three performance tiers—fastest, faster, and fast—allowing you to trade off convenience for execution time depending on your use case. The library handles bulk data writes, cell-by-cell updates, range operations, cell merging, and styling (fonts, fills, alignment, formats). Styling operations carry significant overhead and can increase execution time substantially, so the library encourages selective use.
The package depends on Jinja2 and six, making it lightweight to install. It supports writing data as 2D arrays, setting individual cell values with formulas and dates, and applying styles to cells, ranges, rows, and columns. The description emphasizes that styling should be used sparingly and provides guidance on the fastest approaches for common tasks.
Use it for:
- Export large datasets to XLSX files quickly without styling overhead
- Generate Excel reports with bulk data and minimal formatting requirements
- Write cell-by-cell spreadsheets with formulas and datetime values
- Apply styling to specific cells or ranges when performance is less critical
- Merge cells and organize data into named ranges within a workbook
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
PyExcelerate writes Excel XLSX spreadsheet files from Python with an emphasis on speed, offering multiple performance tiers for bulk data, cell-by-cell writes, and styling operations.
Yes. PyExcelerate is actively maintained, has low install friction, carries no known security vulnerabilities, and uses a permissive license. It is well-suited for projects that prioritize XLSX generation speed over a large feature surface. If you need advanced styling, conditional formatting, or read support, evaluate alternatives; otherwise, it's a solid choice for fast spreadsheet export.
Install
pyexcelerate on PyPI
pip
pip install pyexcelerateuv
uv add pyexceleratepoetry
poetry add pyexcelerateInstalling PyExcelerate
Before you install
Low install friction with a pure-wheel distribution and only two lightweight runtime dependencies (Jinja2 and six). Actively maintained with a recent release in 2025 and an active repository.
License in practice
Licensed under Simplified BSD License (permissive), which allows commercial and private use with minimal restrictions—suitable for most projects.
Quickstart
pip install pyexcelerate
from pyexcelerate import Workbook
data = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
wb = Workbook()
wb.new_sheet("sheet name", data=data)
wb.save("output.xlsx")
Verify before relying
- Whether the package remains compatible with Python versions beyond 3.8 (classifiers list 3.8 as the latest, but requires_python is unspecified)
- Current performance benchmarks relative to modern alternatives (published benchmarks are from Ubuntu 12.04 era)
Package facts
| License | not declared (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 2 — Jinja2, six |
| Maintenance | actively maintained — 448 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 521,818/month — #6,205 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: pyexcelerate-0.13.0-py3-none-any.whl
Tags
More Utilities packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
charset-normalizerDetects and normalizes text encoding from…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
pluggyPluggy provides a plugin system that lets you…
permissive · top 100 on PyPI
PygmentsPygments is a syntax highlighter that colorizes…
permissive · top 100 on PyPI
sixSix provides utility functions to write Python…
permissive · top 100 on PyPI
openpyxlopenpyxl reads and writes Excel 2010…
permissive · top 1,000 on PyPI
xlsxwriterXlsxWriter creates Excel 2007+ XLSX files from…
permissive · top 1,000 on PyPI
pyxlsxProvides dictionary-like read and write access…
permissive · top 15,000 on PyPI
xlwtGenerates Microsoft Excel 97–2003 XLS…
permissive · top 5,000 on PyPI
pyexcel-xlsxReads, manipulates, and writes xlsx and xlsm…
permissive · top 5,000 on PyPI
aspose-cellsAspose.Cells for Python via Java is a library…
unclear · top 15,000 on PyPI
aspose-cells-pythonAspose.Cells for Python via .NET creates,…
unclear · top 15,000 on PyPI
xlrd3Reads data from Excel spreadsheet files (.xls…
permissive · top 15,000 on PyPI
spire-xlsSpire.XLS is a compiled Python library for…
unclear · top 15,000 on PyPI
pyexcel-xlsReads, manipulates, and writes data in xls…
permissive · top 5,000 on PyPI