Skip to main content

Simple Open Document Text templating tool

Project description

This is a minimal module for creating ODT files based on ODT templates and dictionaries of values.

Note that the template rendering is based on regular expression matches on the ODT internal XML data; as such it should not be considered robust and will most certainly fail on some inputs. However, it’s “good enough” to be very useful considering the tiny code footprint - there are more lines of documentation than code here!

Just be sure to test your templates…

Example::

from odt_template import render_odt_template

# Assuming a template that has:
#   - A @TO@ marker somewhere on the page
#   - A table with a row containing @CHILD@ and @NAUGHTY@ markers
#   - An embedded image named XMAS.png
#
render_odt_template('xmas-template.odt', 'simpsons-family.odt', {
    'to': 'Santa Claus',
    'child': [
        {'child': 'Bart', 'naughty': 'yes'},
        {'child': 'Lisa', 'naughty': 'no'},
        {'child': 'Maggie', 'naughty': 'no'}
    ],
    'Pictures/XMAS.png': open('pretty-tree.png', 'r').read()
})

Why doesn’t my template work?

LibreOffice has probably injected random formatting markup in the middle of your placeholders, preventing the tool from recognizing them. Using “Format, Clear Direct Formatting” and then reformatting again (taking care to always select entire placeholders) usually helps.

Contributions and bug reports

Please file pull requests or open issues on this project’s Github repository: https://github.com/BjarniRunar/odt-templater/

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

odt_templater-0.1.2.tar.gz (3.9 kB view details)

Uploaded Source

File details

Details for the file odt_templater-0.1.2.tar.gz.

File metadata

File hashes

Hashes for odt_templater-0.1.2.tar.gz
Algorithm Hash digest
SHA256 c161e13b2c8ecbceb44cad0c5eba9a28819cc7ddcf1773df36b729b2f95975d6
MD5 b20c477a6bdef98a53165c2b67e14634
BLAKE2b-256 632a0ded7a5e9cedf7e078cca6dbf630a2008aa31a45c031f411a08dc526948b

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