Skip to content

Instantly share code, notes, and snippets.

@mcdonc
Forked from offby1/hello.py
Last active December 29, 2015 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcdonc/7724273 to your computer and use it in GitHub Desktop.
Save mcdonc/7724273 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', '\xf8'):
print(template(name=name))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment