__init__.py 274 Bytes
Newer Older
1
from pystache.template import Template
2
from pystache.view import View
3
from pystache.loader import Loader
Chris Wanstrath committed
4

5 6 7
def render(template, context=None, **kwargs):
    context = context and context.copy() or {}
    context.update(kwargs)
8
    return Template(template, context).render()