pybars4
Handlebars.js templating for Python 3
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 pybars4uv
uv add pybars4poetry
poetry add pybars4Installing 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
Tags
More Markup packages
PyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
markdown-it-pyA Python markdown parser that converts markdown…
permissive · top 100 on PyPI
beautifulsoup4Beautiful Soup parses HTML and XML documents…
permissive · top 100 on PyPI
et-xmlfileet_xmlfile writes large XML files with minimal…
permissive · top 1,000 on PyPI
tomlkitParses and edits TOML files while preserving…
permissive · top 1,000 on PyPI
docstring-parserParses Python docstrings in ReST, Google,…
permissive · top 1,000 on PyPI
pybars3Pybars3 compiles and renders Handlebars.js…
copyleft · top 15,000 on PyPI
pydantic-handlebarsRenders Handlebars templates for composing LLM…
permissive · top 5,000 on PyPI
stylusBridges Python code to the Stylus CSS compiler,…
permissive · top 15,000 on PyPI
chevronChevron renders Mustache templates in Python,…
permissive · top 5,000 on PyPI
djlintdjlint formats and lints HTML templates with…
copyleft · top 5,000 on PyPI
django-template-partialsProvides reusable named template partials for…
permissive · top 15,000 on PyPI
MakoMako compiles Python-embedded templates into…
permissive · top 1,000 on PyPI
jinja_partialsAdds a `render_partial()` function to Jinja2…
permissive · top 5,000 on PyPI
pystachePystache renders Mustache templates—a…
permissive · top 5,000 on PyPI
lacesLaces provides Django components that bundle…
permissive · top 5,000 on PyPI