Mercurial > public > sg101
view tools/ssg101/ssg101.py @ 1214:9a011e2de2f6 modernize tip
Add more coverage to antispam utils unit tests.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 10 Feb 2025 19:34:14 -0600 |
parents | b9514abc2a67 |
children |
line wrap: on
line source
import jinja2 def main(): print('Hello World') env = jinja2.Environment( loader=jinja2.PackageLoader('ssg101'), ) template = env.get_template('home.html') with open('output/home.html', 'w') as fp: fp.write(template.render()) if __name__ == '__main__': main()