Skip to content

opensemanticworld/handlebars-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyPI-Server

handlebars-py

handlebars.js transpiled to python with js2py

Usage

#!pip install handlebars
from handlebars import Handlebars
template = Handlebars.compile( "Name: {{name}}" )
template({ "name": "Jane" })
# returns: 'Name: Jane'

Development

pip install -e .[dev]

Test

pytest