Skip to main content

Performs a Mail Merge on docx (Microsoft Office Word) files

Project description

Build Status

Performs a Mail Merge on Office Open XML (docx) files. Can be used on any system without having to install Microsoft Office Word.

Installation

Installation with pip:

$ pip install docx-mailmerge

Usage

Open the file.

from mailmerge import MailMerge
document = MailMerge('input.docx')

List all merge fields.

print document.get_merge_fields()

Merge fields, supplied as kwargs.

document.merge(field1='docx Mail Merge',
               field2='Can be used for merging docx documents')

Merge table rows. In your template, add a MergeField to the row you would like to designate as template. Supply the name of this MergeField as anchor parameter. The second parameter contains the rows with key-value pairs for the MergeField replacements.

document.merge_rows('col1',
                    [{'col1': 'Row 1, Column 1', 'col2': 'Row 1 Column 1'},
                     {'col1': 'Row 2, Column 1', 'col2': 'Row 2 Column 1'},
                     {'col1': 'Row 3, Column 1', 'col2': 'Row 3 Column 1'}]

Write document to file. This should be a new file, as ZipFile cannot modify existing zip files.

document.write('output.docx')

Todo / Wish List

  • Preserve formatting of the merge field, currently it defaults to the formatting of the containing text.

  • Image merging.

Contributing

  • Fork the repository on GitHub and start hacking

  • Send a pull request with your changes

Project details


Download files

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

Source Distribution

docx-mailmerge-0.1.1.tar.gz (4.2 kB view details)

Uploaded Source

File details

Details for the file docx-mailmerge-0.1.1.tar.gz.

File metadata

File hashes

Hashes for docx-mailmerge-0.1.1.tar.gz
Algorithm Hash digest
SHA256 9185beda443bd208abb63bad5ae9d0ca4da4d74df9f585f8c5006c3fa9e4fc74
MD5 8d304aab02e6dbdde8e43d6d5190375d
BLAKE2b-256 2bd20df1d36f8a7294e8e2cb1907545b6bb83dda09498fcf8b9629a9284e88b0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page