Compose .docx documents
Project description
docxcompose is a Python library for concatenating/appending Microsoft Word (.docx) files.
Example usage
Append a document to another document:
from docxcompose.composer import Composer
from docx import Document
master = Document("master.docx")
composer = Composer(master)
doc1 = Document("doc1.docx")
composer.append(doc1)
composer.save("combined.docx")
Changelog
1.0.0a1 (2017-09-13)
Initial release [buchi]
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
docxcompose-1.0.0a1.zip
(8.1 kB
view details)
File details
Details for the file docxcompose-1.0.0a1.zip
.
File metadata
- Download URL: docxcompose-1.0.0a1.zip
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa061016dc505126cca10a213445d15abebe856db2ed67f3361c28577a06bf13 |
|
MD5 | e517c3e96ad387eee32a0d168450891d |
|
BLAKE2b-256 | 079612fce44c7fad4fd03ffb5236f50f5dae76c9351bc85d4546d63ac5fe4f17 |