skillfed

pybars4

Handlebars.js templating for Python 3

pybars4 v0.9.13 309.2K downloads/30d#7,759 on PyPI2
Copyleft license Abandoned released

What it is and what it does

Pybars4 is a Python implementation of the Handlebars.js templating language, designed to let you write templates once and use them in both server-side Python code and client-side JavaScript. It compiles Handlebars syntax into Python callables that render output by combining template logic with data and helper functions. The package supports many Handlebars features including partials, custom helpers, block statements, scope accessors like `@index` and `@root`, and dynamic partials, though not all Handlebars 2.0 features are fully implemented.

The package is maintained as a pragmatic fork of pybars3 to enable Python 3 compatibility and add features from Handlebars.js 2.0. It uses a custom `strlist` class to avoid quadratic string concatenation overhead during rendering. Helpers are Python functions that receive context, options, and arguments, and can return lists, tuples, or strlist instances to control escaping behavior.

Use it for:

  • Render server-side templates using the same Handlebars syntax your frontend already uses, reducing template duplication.
  • Build custom helpers in Python to extend template logic beyond what Handlebars provides natively.
  • Generate HTML or text output from templates with partials, loops, and conditional blocks.
  • Share template files between a Python backend and JavaScript frontend without rewriting syntax.
  • Precompile templates for efficiency in high-volume rendering scenarios.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Pybars4 compiles and renders Handlebars.js templates in Python, allowing you to use the same template syntax on both server and client sides.

No. The package is abandoned (last update 2021-04-04) with no active maintenance, high install friction, and a copyleft license that restricts use in proprietary code. Unless you are maintaining legacy code already using pybars4, consider modern alternatives.

Install

pybars4 on PyPI

pip

pip install pybars4

uv

uv add pybars4

poetry

poetry add pybars4

Installing pybars4

Before you install

Installation friction is high; the package has no runtime dependencies but the distribution is source-only. Maintenance is abandoned—the last commit was 2021-04-04 with minimal repository activity (2 stars). No active support or updates should be expected.

License in practice

Pybars4 is licensed under the GNU Lesser General Public License version 3 (copyleft). Any derivative work or modification must be released under the same license; linking from proprietary code is permitted but redistribution of modifications requires license compliance.

Quickstart

from pybars import Compiler

compiler = Compiler()
source = u"{{#list people}}{{firstName}} {{lastName}}{{/list}}"
template = compiler.compile(source)

def _list(this, options, items):
    result = [u'']
    for thing in items:
        result.extend(options['fn'](thing))
    return result

output = template(
    {'people': [{'firstName': 'John', 'lastName': 'Doe'}]},
    helpers={'list': _list}
)

Verify before relying

  • Whether PyMeta3 dependency is correctly declared in package metadata (documented as required but not listed in runtime deps)
  • Current compatibility with Python versions beyond 3.4 (classifiers list only up to 3.4; modern Python support unknown)
  • Completeness of Handlebars 2.0 feature coverage and any known gaps beyond those acknowledged in the description

Package facts

License not declared (copyleft)
Python support not specified
Install friction high — source build required
Runtime dependencies none
Maintenance abandoned — 1,958 days since the last release
Last repo commit
First released
Downloads 309,208/month — #7,759 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pybars4-0.9.13.tar.gz

Development Status :: 4 - BetaIntended Audience :: DevelopersLicense :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)Operating System :: OS IndependentProgramming Language :: Python :: 2Programming Language :: Python :: 2.7Programming Language :: Python :: 3Programming Language :: Python :: 3.3Programming Language :: Python :: 3.4

Tags

handlebars template engine pythonhandlebars.js python compatibilityserver-side template renderingshared templates python javascriptmustache alternative pythontemplate compilation pythonhandlebars syntax python
template-enginehandlebarsabandoned

More Markup packages