--- id: pybars4 version: "0.9.13" license: unclear license_treatment: copyleft maintenance: abandoned --- # pybars4 — Handlebars.js templating for Python 3 License: copyleft · Maintenance: abandoned · Downloads: 309.2K/mo ## 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 above — 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 pip install pybars4 uv add pybars4 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: unspecified - Install friction: high - Maintenance: abandoned - Downloads: 309.2K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags handlebars template engine python, handlebars.js python compatibility, server-side template rendering, shared templates python javascript, mustache alternative python, template compilation python, handlebars syntax python, template-engine, handlebars, abandoned [View on SkillFed](https://skillfed.io/packages/pybars4) · [View on PyPI](https://pypi.org/project/pybars4/)