Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 930 Bytes

File metadata and controls

39 lines (28 loc) · 930 Bytes

python-docx

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

Installation

pip install python-docx

Development

This project is managed with uv. Supported Python versions are 3.13+.

uv sync
uv run --group typing ty check src
uv run pytest -x
uv run --group test behave --stop
uv run --group docs sphinx-build -b html docs docs/.build/html

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.'

More information is available in the python-docx documentation