Edit docx with python
Project description
docx-editor
Pure Python library for Word document track changes and comments, without requiring Microsoft Word.
Note: The PyPI package is named
docx-editorbecausedocx-editwas too similar to an existing package.
- Github repository: https://github.com/pablospe/docx-editor/
- Documentation: https://pablospe.github.io/docx-editor/
Features
- Track Changes: Replace, delete, and insert text with revision tracking
- Cross-Boundary Editing: Find and replace text spanning multiple XML elements and revision boundaries
- Mixed-State Editing: Atomic decomposition for text spanning
<w:ins>/<w:del>boundaries - Comments: Add, reply, resolve, and delete comments
- Revision Management: List, accept, and reject tracked changes
- Cross-Platform: Works on Linux, macOS, and Windows
- No Dependencies: Only requires
defusedxmlfor secure XML parsing
Installation
pip install docx-editor
Quick Start
from docx_editor import Document
with Document.open("contract.docx") as doc:
# Track changes
doc.replace("30 days", "60 days")
doc.insert_after("Section 5", "New clause")
doc.delete("obsolete text")
# Comments
doc.add_comment("Section 5", "Please review")
# Revision management
revisions = doc.list_revisions()
doc.accept_revision(revision_id=1)
doc.save()
Cross-Boundary Text Operations
Text in Word documents with tracked changes can span revision boundaries. docx-editor handles this transparently:
from docx_editor import Document
with Document.open("reviewed.docx") as doc:
# Get visible text (inserted text included, deleted excluded)
text = doc.get_visible_text()
# Find text across element boundaries
match = doc.find_text("Aim: To")
if match and match.spans_boundary:
print("Text spans a revision boundary")
# Replace works even across revision boundaries
doc.replace("Aim: To", "Goal: To")
doc.save()
Claude Code Skill
This repo includes a skill for Claude Code that enables AI-assisted Word document editing.
This skill extends the original Anthropic docx skill which requires Claude to manually manipulate OOXML. Instead, this skill provides an interface (docx-editor) that handles all the complexity—Claude just calls simple Python methods like doc.replace() or doc.add_comment(), making document editing significantly faster and less error-prone.
Install the skill
# Install dependencies
pip install docx-editor python-docx
# Copy skill to Claude Code skills directory
git clone https://github.com/pablospe/docx-editor /tmp/docx-editor
mkdir -p ~/.claude/skills
cp -r /tmp/docx-editor/skills/docx ~/.claude/skills/
rm -rf /tmp/docx-editor
Once installed, Claude Code can help you edit Word documents with track changes, comments, and revisions.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file docx_editor-0.1.1.tar.gz.
File metadata
- Download URL: docx_editor-0.1.1.tar.gz
- Upload date:
- Size: 382.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.21 {"installer":{"name":"uv","version":"0.9.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7e7d5b5a4544310f856e68da4cccaaeef5cc57ff688454928b129753eec9720
|
|
| MD5 |
938e1e3cf8193f67fb2d6367e09d3d9e
|
|
| BLAKE2b-256 |
0dda5f743b44dde8254cebe4684d754d1638f68463674ec6589b931787dbd3a0
|
File details
Details for the file docx_editor-0.1.1-py3-none-any.whl.
File metadata
- Download URL: docx_editor-0.1.1-py3-none-any.whl
- Upload date:
- Size: 40.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.21 {"installer":{"name":"uv","version":"0.9.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0190ff2535b92554428a83ee354fe98b4ea7a37af8fd4c832a9233c881f51aa4
|
|
| MD5 |
1a3a7ff416968864080e531255c6cc73
|
|
| BLAKE2b-256 |
87a5c6b6308030f4151a1a5def5d4f3bf760db323baf20e64701f08b31558c27
|