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/
Copyright and License (MIT)
This code is (C) Copyright 2017, Bjarni Rúnar Einarsson.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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
File details
Details for the file odt_templater-0.1.2.tar.gz
.
File metadata
- Download URL: odt_templater-0.1.2.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c161e13b2c8ecbceb44cad0c5eba9a28819cc7ddcf1773df36b729b2f95975d6 |
|
MD5 | b20c477a6bdef98a53165c2b67e14634 |
|
BLAKE2b-256 | 632a0ded7a5e9cedf7e078cca6dbf630a2008aa31a45c031f411a08dc526948b |