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