mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
34 lines
731 B
Python
34 lines
731 B
Python
import toml
|
|
import os
|
|
import jinja2
|
|
|
|
env = jinja2.Environment(
|
|
loader=jinja2.FileSystemLoader('dev/templates'),
|
|
autoescape=jinja2.select_autoescape(['html', 'xml']),
|
|
keep_trailing_newline=True
|
|
)
|
|
|
|
with open("pyproject.toml") as filed:
|
|
data = toml.load(filed)
|
|
|
|
templatedir = "./dev/templates"
|
|
|
|
for root,dirs,files in os.walk(templatedir):
|
|
|
|
reldirpath = os.path.relpath(root,start=templatedir)
|
|
for f in files:
|
|
|
|
relfilepath = os.path.join(reldirpath,f)
|
|
|
|
if not f.endswith('.jinja'): continue
|
|
|
|
srcfile = os.path.join(root,f)
|
|
trgfile = os.path.join(reldirpath,f.replace(".jinja",""))
|
|
|
|
|
|
template = env.get_template(relfilepath)
|
|
result = template.render(**data)
|
|
|
|
with open(trgfile,"w") as filed:
|
|
filed.write(result)
|