Skip to main content

python-docx-ng

PyPI Downloads

python-docx-ng is a Python library for reading, creating, and updating Microsoft Word 2007+ (.docx) files.

It is a downstream superset of python-docx by scanny: everything upstream does, plus features upstream has not adopted. As of 2.0.0 this project tracks upstream v1.2.0 directly, so it builds on upstream's typed and tested core rather than a 2021 snapshot of it.

Installation

pip install python-docx-ng

Note: the importable package is docx, not python_docx_ng — use import docx. python-docx-ng and python-docx therefore cannot be installed side by side.

Python 3.9 through 3.14. The only runtime dependencies are lxml and typing_extensions; lxml is floored at 6.1.0, the first release fixing CVE-2026-41066.

Example

>>> from docx import Document

>>> document = Document()
>>> document.add_paragraph("It was a dark and stormy night.")
<docx.text.paragraph.Paragraph object at 0x10f19e760>
>>> document.save("dark-and-stormy.docx")

>>> document = Document("dark-and-stormy.docx")
>>> document.paragraphs[0].text
'It was a dark and stormy night.'

Documentation

https://toxicphreak.github.io/python-docx-ng/

The upstream python-docx documentation also covers the shared core.

For language models

The site publishes llms.txt and llms-full.txt. Any tool that reads the format can consume them — for example mcpdoc, which serves them to an editor over MCP:

uvx --from mcpdoc mcpdoc --urls python-docx-ng:https://toxicphreak.github.io/python-docx-ng/llms.txt

What this adds over python-docx

Everything upstream v1.2.0 does, plus:

Editing and review

  • Tracked changes — read revisions, and accept or reject them individually or in bulk
  • Comments, footnotes, endnotes, and cross-run search and replace that survives Word's run splitting
  • A deletion API — .delete() on paragraphs, runs, tables, rows and columns
  • copy_to() on paragraphs, runs, rows and tables — with relationships, ids, styles and numbering repaired

Content people ask for

  • Fields and a table of contents — Paragraph.add_field(), with builders for PAGE, TOC, REF, SEQ and the rest
  • Captions — Document.add_caption() writes the label, the SEQ field and the _Ref bookmark Word's cross-reference dialogue needs
  • List numbering, readable and writable — define a list from scratch, apply it, restart it
  • Bookmarks and Paragraph.add_hyperlink()
  • Watermarks, text and image, written into the header where Word expects them
  • Floating (anchored) images with text wrapping, alongside inline ones
  • Legacy form fields — read and fill text inputs, check boxes and drop-downs
  • AltChunk — embed HTML, RTF or another .docx for Word to import on open
  • Embedded OLE objects — discover and extract a document's attachments, or add one

Formatting

  • Borders on tables, cells, paragraphs and pages — Table.borders["top"].line = WD_LINE_STYLE.SINGLE
  • Table width (including percentages), indent, cell margins, and the tblLook style flags
  • Row properties — repeat_as_header, hidden, alignment, cell spacing, dont_split
  • Paragraph and run shading, including the pattern and its colour
  • Document defaults (w:docDefaults) — the bottom of the inheritance chain, and often the only place the base font is set
  • The paragraph mark's own formatting, which is what an empty paragraph is formatted with
  • Right-to-left and vertical text on paragraphs, sections and cells
  • Character-unit indents and line-unit spacing
  • Multi-column section layout
  • Outline level — drives the outline shown in navigation panes and PDF bookmarks
  • Font scaling, theme typefaces, East Asian and complex-script typefaces

Styles

  • Which styles are actually used — a reachability closure over every story part, not a scan of the body
  • Document.cleanup() — remove the styles, numbering and media nothing points at; 20 KB down to 9 KB
  • Bulk style transfer — import a house .dotx's styles, or extract a document's into one
  • Copying a style between documents, with its basedOn/next/link closure and numbering

Files and formats

  • .docm (macro-enabled) and .dotx/.dotm (template) support, plus reading, transplanting and stripping the VBA project itself
  • SVG, EMF, WMF and WebP image support
  • Image extraction — InlineShape.image, FloatingShape.image, Document.images
  • EXIF orientation honoured, so a portrait photo off a phone is not inserted sideways
  • Custom and extended document properties (docProps/custom.xml, docProps/app.xml), and the custom XML data store content controls bind to
  • The theme part — the fonts and colours a minorHAnsi token resolves through
  • OMML equations, readable through Document.math
  • Reproducible documents — the same input produces byte-identical output
  • Accepts pathlib.Path anywhere a path is taken

Accessibility

  • Alt text on pictures, inline shapes and tables

Tooling

  • python -m docxinfo, styles report/list/extract and cleanup, with a --check mode that works as a CI gate

Robustness

  • Tolerates oversized attribute values the default lxml parser rejects
  • Corrupt, truncated and password-protected files raise something that says which
  • Custom namespaces in xpath() calls

Some things are deliberately not here yet — reading ISO Strict documents, charts and SmartArt, and decompressing VBA module source among them. See the issue tracker for what is planned, and HISTORY.rst for the full changelog.

Upgrading from 0.9.x

2.0.0 rebases onto upstream v1.2.0 and contains breaking changes. Several 0.9.x additions were dropped in favour of upstream implementations of the same features, which are better tested and differently shaped — notably comments, hyperlinks, and table cell access. Read the migration guide before upgrading.

Development

Requires uv.

uv sync              # create the environment
uv run pytest        # unit tests
make accept          # acceptance tests (behave)
uv run pyright       # type check
uv run ruff check .  # lint

Contributors

  • @lyydsheepos.PathLike support throughout document open and save (#130)
  • @builtbyhuy — XPath variable binding, so style names containing quotes are reachable (#131)
  • @BortnikMaxim — table alternative text, Table.title and Table.description (#132)

The full list, by release, is in CONTRIBUTORS.md. Patches are welcome — see CONTRIBUTING.md.

License

MIT — see LICENSE. Originally developed by Steve Canny as python-docx.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_docx_ng-2.1.0.tar.gz (6.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_docx_ng-2.1.0-py3-none-any.whl (409.0 kB view details)

Uploaded Python 3

File details

Details for the file python_docx_ng-2.1.0.tar.gz.

File metadata

  • Download URL: python_docx_ng-2.1.0.tar.gz
  • Upload date:
  • Size: 6.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for python_docx_ng-2.1.0.tar.gz
Algorithm Hash digest
SHA256 23ab75d74d28f0666143f84870c4e1856c0f64948d6c2616f2492dd2d336cf7a
MD5 8853502ab6d2108d8a09057fffd46e53
BLAKE2b-256 bfb89468f5109d4d67e5237ab9ffa3845eb7ffc858154cf5dbff9caf8142b138

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_docx_ng-2.1.0.tar.gz:

Publisher: python-publish.yml on toxicphreAK/python-docx-ng

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_docx_ng-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: python_docx_ng-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 409.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for python_docx_ng-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d2bd6b1a2bdcc3fde8d1f1f54cd1db196b0d40e6a85f50be58a446cd8be69beb
MD5 cf07bd770decc6a15c079aeebf153533
BLAKE2b-256 576f6458c6fdfc472046812d4dcaad7e46bef6e7f4f8070e4005dee148f59663

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_docx_ng-2.1.0-py3-none-any.whl:

Publisher: python-publish.yml on toxicphreAK/python-docx-ng

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

2.1.0 This release

2 files

2.0.0

2 files

0.9.7

2 files

0.9.6

2 files

0.9.5

2 files

0.9.4

2 files

0.9.3

2 files

0.9.2

2 files

0.9.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page