Eric Lapouyade 20e30c541c v0.5.9
2018-11-18 17:56:14 +01:00

11 lines
283 B
Python

from docxtpl import DocxTemplate, RichText
tpl = DocxTemplate('templates/word2016_tpl.docx')
tpl.render({
'test_space' : ' ',
'test_tabs': 5*'\t',
'test_space_r' : RichText(' '),
'test_tabs_r': RichText(5*'\t'),
})
tpl.save('output/word2016.docx')