summaryrefslogtreecommitdiff
path: root/pystache/__init__.py
blob: bb832b87705a11cf04a8ab994ed75beeb53d7e44 (plain)
1
2
3
4
5
6
7
from pystache.template import Template
from pystache.view import View

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