Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skelmis/python-docx
A fork of python-docx but with everyday features I need
https://github.com/skelmis/python-docx
Last synced: about 1 month ago
JSON representation
A fork of python-docx but with everyday features I need
- Host: GitHub
- URL: https://github.com/skelmis/python-docx
- Owner: Skelmis
- License: mit
- Created: 2024-08-15T11:15:59.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-10-05T04:26:26.000Z (3 months ago)
- Last Synced: 2024-11-27T03:04:43.284Z (about 2 months ago)
- Language: Python
- Homepage: https://skelmis-docx.readthedocs.io/en/latest/
- Size: 43.1 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.rst
- License: LICENSE
Awesome Lists containing this project
README
# python-docx
*python-docx* is a Python library for reading, creating, and updating Microsoft Word 2007+ (.docx) files.
This repository exists as a fork of [the official repo](https://github.com/python-openxml/python-docx) as I needed features and quality of life improvements.
Key differences at a glance:
- Supporting multiple numbered lists within a document
- Supporting TOC updates within the package without the need to open the document manually
- Supporting floating images within documents
- Supporting the ability to transform word documents into PDF's
- Horizontal rules + paragraph bounding boxes## Installation
```
pip install skelmis-docx
```## Example
```python
>>> from docx import Document>>> document = Document()
>>> document.add_paragraph("It was a dark and stormy night.")>>> 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 [documentation](https://skelmis-docx.readthedocs.io/en/latest/)