skillfed

PyExcelerate

Accelerated Excel XLSX Writing Library for Python 2/3

pyexcelerate v0.13.0 521.8K downloads/30d#6,205 on PyPI559
Permissive license Active released

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 pyexcelerate

uv

uv add pyexcelerate

poetry

poetry add pyexcelerate

Installing 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

Development Status :: 4 - BetaIntended Audience :: DevelopersLicense :: OSI Approved :: BSD LicenseProgramming Language :: Python :: 2.7Programming Language :: Python :: 3.4Programming Language :: Python :: 3.5Programming Language :: Python :: 3.6Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8

Tags

fast excel xlsx writingpython spreadsheet generationbulk excel exporthigh-performance xlsx libraryexcel file creation pythonaccelerated spreadsheet writerxlsx generation performance
spreadsheet-exportperformance-oriented

More Utilities packages