7 lines
133 B
Python

from docxtpl import DocxTemplate
tpl = DocxTemplate('templates/comments_tpl.docx')
tpl.render({})
tpl.save('output/comments.docx')