A Python SDK for advanced creation and manipulation of Microsoft Word .docx files.
python-docx-oss is an independently evolving DOCX SDK built on the proven API
foundation of python-docx. It keeps
the familiar docx programming model while extending it for advanced OOXML and Open
Packaging Convention (OPC) workflows.
Use it when an application needs more than basic paragraphs and tables: custom document metadata, application-owned XML, vector images, floating pictures, East Asian fonts, or low-level package and relationship access.
| Capability | Support |
|---|---|
| Documents, paragraphs, runs, tables, styles, sections, headers, and footers | ✓ |
| Custom document properties | ✓ |
| Custom XML parts | ✓ |
| SVG and EMF images | ✓ |
| Inline and floating pictures | ✓ |
| Independent ASCII, High ANSI, and East Asian font controls | ✓ |
| Low-level OPC parts and relationships | ✓ |
| File-path and in-memory stream processing | ✓ |
python -m pip install python-docx-ossThe distribution name is python-docx-oss, but the Python import namespace remains
docx:
from docx import DocumentWarning
python-docx and python-docx-oss provide the same docx import namespace. Do not
install both distributions in the same Python environment.
python-docx-oss currently supports Python 3.12, 3.13, and 3.14.
Create a document entirely in memory:
from io import BytesIO
from docx import Document
document = Document()
document.add_heading("Quarterly Report", level=1)
document.add_paragraph("Generated entirely in memory.")
output = BytesIO()
document.save(output)
docx_bytes = output.getvalue()The same APIs also accept filesystem paths:
document = Document("input.docx")
document.add_paragraph("Appended by python-docx-oss.")
document.save("output.docx")document = Document()
document.custom_properties["workflow_status"] = "approved"
document.custom_properties["revision"] = 3Custom properties are visible in Microsoft Word and stored in
/docProps/custom.xml. See Working with custom
properties.
custom_xml = document.part.add_custom_xml_part(
'<order xmlns="urn:example:orders" id="A-001"/>',
)
custom_xml.add_item("status", "ready")See Working with Custom XML for lifecycle and compatibility considerations.
run = document.add_paragraph().add_run("English 与中文")
run.font.name = "Open Sans"
run.font.eastAsia = "Microsoft YaHei"SVG and EMF streams can be passed to the standard picture APIs. Floating pictures are
available through Document.add_float_picture() and Run.add_float_picture().
- The project maintains broad compatibility with the public
python-docxAPI while following its own versioning and product roadmap. - Compatibility does not extend to every private or internal
python-docxAPI. Test those integrations before migrating production systems. - The SDK focuses exclusively on DOCX. It is not a general XLSX/PPTX Office suite.
- It edits document structure but does not implement Word's page-layout rendering engine.
- CLI, MCP, web, desktop, and Agent runtimes belong in separate packages that consume this SDK.
- Documentation site
- Installation guide
- Quickstart
- User guide
- API reference
- Custom properties
- Custom XML
- Release history
The test suite combines unit and acceptance coverage with in-memory round-trip tests using documents created by Microsoft Word. The integration fixtures cover floating pictures, SVG fallback relationships, East Asian fonts, Custom XML parts, and core OPC package preservation.
For local development:
uv sync
uv run pytest
uv run ruff check .
uv run pyrightThe current focus is stabilizing the independent SDK baseline, its in-memory workflows, and its advanced OOXML capabilities before expanding document inspection, comparison, sanitization, composition, and validation APIs.
This project builds on the original work of
python-docx creator Steve Canny and
its contributors. python-docx-oss is maintained by Ethan St Lee and its contributors.
In Brazilian jiu-jitsu, “oss” is a greeting and an expression of respect. It reflects the same spirit of discipline and collaboration behind this project.
python-docx-oss is released under the MIT License.
If this project is useful to you, you can support its continued development through the donation page.
