inkstitch/lib/inx/info.py

10 wiersze
293 B
Python
Executable File

from .utils import build_environment, write_inx_file
def generate_info_inx_files():
env = build_environment()
info_inx_files = ['about', 'embroider']
for info in info_inx_files:
template = env.get_template('%s.xml' % info)
write_inx_file(info, template.render())