ReadOnly python-docx fork lib
Project description
Docxray
A sophisticated DOCX analysis library — fork of python-docx with advanced parsing, styling intelligence, and deep ECMA-376 compliance.
Built for reading, inspecting, and transforming
.docx(OOXML Transitional) documents with precision.
✨ Key Features
- 🧠 Smart property resolution – inherits formatting from style hierarchies, following ECMA-376 rules (not just raw XML values)
- 🖼️ Rich image support – works with Pillow or Wand (ImageMagick); handles modern formats plus legacy WMF/EMF
- 🔄 HTML transformation – proxy objects (
Paragraph,Table, etc.) include methods to convert content to HTML with rendering options - ✅ XSD soft validation – validates simple types against the official schema
- 🔢 Intelligent list handling – numeral module correctly restores list-item text for most common cases
🚀 Quick Start
from docxray import Document
doc = Document("path/to/your/document.docx")
# Iterate through all inner content
for item in doc.iter_inner_content():
# Process paragraphs, tables, runs, etc.
pass
📦 Installation
pip install docxray
Additional Dependencies
ImageMagick is required for full image processing support when using the Wand library. Without ImageMagick, Docxray will fall back to using Pillow for image handling.
- For Wand (recommended for advanced formats like WMF/EMF):
- macOS:
brew install imagemagick - Ubuntu/Debian:
sudo apt-get install imagemagick libmagickwand-dev - Windows: Download and install from ImageMagick official site (ensure the development headers are included)
- macOS:
Note: If both Wand and ImageMagick are available, Docxray will use them for superior format support. If ImageMagick is missing, the library automatically falls back to Pillow for basic image operations.
📖 Documentation
Docxray is designed for read‑only document analysis. It provides:
- Full access to document structure (paragraphs, runs, tables, images)
- Styling attributes resolved through the complete OOXML style inheritance chain
- Convenient proxies for manipulating content before export (e.g., to HTML)
- Validation utilities to check document conformance
🧪 Example: Inspecting Run Properties
for item in doc.iter_inner_content():
if isinstance(item, Paragraph):
for p_item in item.iter_inner_content():
if isinstance(p_item, Run) and p_item.italic:
print(f"Italic text: {p_item.raw_text}")
📄 License
MIT — free for personal and commercial use.
🙏 Acknowledgements
Built as a fork of the excellent python-docx project, extended for deeper ECMA-376 compliance and analysis capabilities.
Project details
Release history Release notifications | RSS feed
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 docxray-0.0.0a17.tar.gz.
File metadata
- Download URL: docxray-0.0.0a17.tar.gz
- Upload date:
- Size: 133.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07746a5208c4283b14fd4638b2a9682331a38510ebed3ea27d759f0ae5ebaec7
|
|
| MD5 |
97c4e82c956ac6ce84812e1886b53aea
|
|
| BLAKE2b-256 |
e78602f9cf3fa0cb38870f90878d88cfa854f818aaff1fe32c85b26e3d6a9e97
|
File details
Details for the file docxray-0.0.0a17-py3-none-any.whl.
File metadata
- Download URL: docxray-0.0.0a17-py3-none-any.whl
- Upload date:
- Size: 172.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99f3322b4125589d183d0e0443ab169c81c9b923c95ecc486e57b39c35d4e553
|
|
| MD5 |
00d65f30d5b2e6f1b6b4290026151e71
|
|
| BLAKE2b-256 |
04c50c772fa11cfcde8d6ff2cde272916ff6c8824120b1d9b4a489ad9f935194
|