office_oxide

(★ 111)

The fastest Office document library for Python, Rust, Go, JS/TS, C# and WASM. DOCX, XLSX, PPTX, DOC, XLS, PPT. Up to 100× faster than python-docx/openpyxl/python-pptx. 100% pass rate on valid Office files. MIT/Apache-2.0.

  • .editorconfig
  • .gitattributes
  • .gitignore
  • .pre-commit-config.yaml
  • .taplo.toml
  • AGENTS.md
  • bench_python.py
  • BENCHMARKS.md
  • Cargo.lock
  • Cargo.toml
  • cbindgen.toml
  • CHANGELOG.md
  • CLA.md
  • clippy.toml
  • CODE_OF_CONDUCT.md
  • codecov.yml
  • CONTRIBUTING.md
  • deny.toml
  • LICENSE-APACHE
  • LICENSE-MIT
  • llms.txt
  • Makefile
  • NOTICE
  • pyproject.toml
  • README.md
  • rustfmt.toml
  • SECURITY.md
  • TRADEMARKS.md

# Installation Guide

1. Get the code
git clone https://github.com/yfedoseev/office_oxide

Downloads the entire project code from GitHub to your computer.

cd office_oxide

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
pip install office-oxide

Installs the package published on PyPI directly — no need to clone the source.

cargo install office_oxide_cli # Cargo

Builds and installs the package published on crates.io — no need to clone the repo yourself.

cargo install office_oxide_mcp

Builds and installs the package published on crates.io — no need to clone the repo yourself.

After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. .NET

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
dotnet add package OfficeOxide

Type this command into your terminal and run it.

After dotnet run, check the message or address shown in the terminal.

Pulled directly from this repo's README.

4. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
npm install office-oxide # native addon

Downloads and installs the libraries listed in package.json.

npm install office-oxide-wasm # portable WASM

Downloads and installs the libraries listed in package.json.

npm install office-oxide-wasm # portable WASM (browser + Node.js)

Downloads and installs the libraries listed in package.json.

npm install office-oxide # native addon via koffi (Node.js only, no node-gyp)

Downloads and installs the libraries listed in package.json.

After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

Pulled directly from this repo's README.

5. Python

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
pip install office-oxide

Installs the package published on PyPI directly — no need to clone the source.

If it runs without errors and prints output in the terminal, it worked.

Pulled directly from this repo's README.

6. Go

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Go The Go compiler and toolchain.
cd go

This project's files live in a subfolder, so move into it first.

go build ./...

Compiles the Go program into an executable.

go run .

Runs the Go program directly without a separate build step.

If the build finishes without errors, it worked. If you used go run ., check the terminal output.

7. Rust

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Rust (rustup) Installing via rustup also installs cargo.
cargo install office_oxide_cli # Cargo

Builds and installs the package published on crates.io — no need to clone the repo yourself.

cargo binstall office_oxide_cli # Pre-built binary

Type this command into your terminal and run it.

cargo install office_oxide_mcp

Builds and installs the package published on crates.io — no need to clone the repo yourself.

cargo build --release

Compiles the Rust project.

cargo test

Type this command into your terminal and run it.

If cargo build finishes without errors, it worked. The executable is created under target/.

Pulled directly from this repo's README.

8. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make

Compiles the code based on the generated build configuration to produce an executable.

If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation