python-docx-template/tests/horizontal_merge.py
2024-07-21 16:10:44 +02:00

8 lines
173 B
Python

# -*- coding: utf-8 -*-
from docxtpl import DocxTemplate
tpl = DocxTemplate("templates/horizontal_merge_tpl.docx")
tpl.render({})
tpl.save("output/horizontal_merge.docx")