This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
2014-11-10 16:40:41 +01:00

20 lines
437 B
Python

# encoding: utf-8
"""
This module contains the initialization logic called by __init__.py.
"""
from pystache.parser import parse
from pystache.renderer import Renderer
from pystache.template_spec import TemplateSpec
def render(template, context=None, **kwargs):
"""
Return the given template string rendered using the given context.
"""
renderer = Renderer()
return renderer.render(template, context, **kwargs)