Skip to content

Instantly share code, notes, and snippets.

@offby1
Created November 30, 2013 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save offby1/7724210 to your computer and use it in GitHub Desktop.
Save offby1/7724210 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from chameleon import PageTemplate
template = PageTemplate("Hello, ${name}.")
for name in ('Fred', u'ἃc'):
print(template(name=name))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment