pyxlsb
Excel 2007-2010 Binary Workbook (xlsb) parser
What it is and what it does
pyxlsb is a parser for Excel Binary Workbook files (xlsb format) that were used in Excel 2007-2010. It provides a simple API to open xlsb files, retrieve sheets by index or name, and iterate over rows as Cell objects containing row, column, and value data. The library handles basic data extraction and includes a utility to convert Excel date floats into Python datetime objects.
The package has no external runtime dependencies and installs cleanly. However, it is no longer actively maintained—the last commit was in August 2023 and the last release in October 2022. While marked as Production/Stable in its classifiers, it will not receive bug fixes or updates for newer Python versions or Excel format changes. It is suitable only for reading legacy xlsb files in stable, well-understood workflows.
Use it for:
- Extract data from older Excel binary workbooks (2007-2010 era) in batch data pipelines
- Migrate legacy xlsb files to modern formats by parsing and re-exporting the data
- Read xlsb files in environments where openpyxl or other modern libraries are unavailable
- Convert Excel date values stored as floats into datetime objects for analysis
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Parses Excel 2007-2010 Binary Workbook (xlsb) files and extracts data as rows of cells with values, dates, and positions.
Yes, if you need to read legacy xlsb files and have no alternative. The package is stable, dependency-free, and has no known vulnerabilities. However, do not rely on it for new projects or expect updates—it is abandoned. If you control the source files, consider converting them to xlsx or csv. The LGPLv3+ license requires derivative works to remain open-source.
Install
pyxlsb on PyPI
pip
pip install pyxlsbuv
uv add pyxlsbpoetry
poetry add pyxlsbInstalling pyxlsb
Before you install
Low install friction with no runtime dependencies. However, the package is abandoned—last commit was 2023-08-27 and no releases since 2022-10-14. It is marked Production/Stable but receives no active maintenance.
License in practice
Licensed under LGPLv3+, a copyleft license. Any derivative work or modification must be released under the same or compatible license; proprietary use requires careful review.
Quickstart
pip install pyxlsb
from pyxlsb import open_workbook, convert_date
with open_workbook('Book1.xlsb') as wb:
with wb.get_sheet(1) as sheet:
for row in sheet.rows():
print(row)
# Returns Cell objects with r, c, v attributes; use convert_date() for date floats
Verify before relying
- Whether the package handles modern Excel binary formats beyond 2007-2010 versions
- Current compatibility with Python versions beyond 3.9 given the abandoned status
- Whether edge cases in xlsb parsing (complex formulas, embedded objects, macros) are supported
Package facts
| License | LGPLv3+ (copyleft) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | abandoned — 1,400 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 11,464,755/month — #1,392 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: pyxlsb-1.0.10-py2.py3-none-any.whl
Tags
More Text Processing packages
A drop-in replacement for Python's standard…
permissive · top 100 on PyPI
pyparsingpyparsing provides a library for building text…
permissive · top 1,000 on PyPI
docutilsDocutils converts plaintext documentation in…
unclear · top 1,000 on PyPI
RapidFuzzRapidFuzz provides fast fuzzy string matching…
permissive · top 1,000 on PyPI
tinycss2tinycss2 parses CSS strings into token and…
permissive · top 1,000 on PyPI
llama-parseLlamaParse parses complex documents (PDFs,…
permissive · top 1,000 on PyPI
pyxlsxProvides dictionary-like read and write access…
permissive · top 15,000 on PyPI
excelrdExtracts data from Microsoft Excel spreadsheet…
permissive · top 15,000 on PyPI
xlrd3Reads data from Excel spreadsheet files (.xls…
permissive · top 15,000 on PyPI
pylightxlReads and writes Microsoft Excel files (.xlsx,…
permissive · top 15,000 on PyPI
FlowIOFlowIO reads and writes Flow Cytometry Standard…
permissive · top 15,000 on PyPI
openpyxlopenpyxl reads and writes Excel 2010…
permissive · top 1,000 on PyPI
aspose-cellsAspose.Cells for Python via Java is a library…
unclear · top 15,000 on PyPI
xlrdxlrd reads data and formatting information from…
permissive · top 1,000 on PyPI
aspose-cells-pythonAspose.Cells for Python via .NET creates,…
unclear · top 15,000 on PyPI
XMindXMind creates, parses, and updates XMind mind…
permissive · top 15,000 on PyPI