To use mustache templating language with Python we need chevron.
If you get some red errors try this:
If you still get red errors, sorry I'm a NOOB.
Next, add chevron.exe to PATH, like pip message suggest.
Example template file (diviera.txt):
Python code:
pip install chevron
If you get some red errors try this:
pip install --user chevron
If you still get red errors, sorry I'm a NOOB.
Next, add chevron.exe to PATH, like pip message suggest.
Example template file (diviera.txt):
<title>{{title}}</title>
This is {{name}}!
Python code:
import chevron
strings = {'title': 'Fantastic title',
'name':'Sparta'}
with open('diviera.txt', 'r') as f:
fillup = chevron.render(f, strings)
with open('diviera_final.txt', 'w') as nf:
nf.write(fillup)