pybars3 icon indicating copy to clipboard operation
pybars3 copied to clipboard

Handlebars.js template support for Python 3 and 2

Results 26 pybars3 issues
Sort by recently updated
recently updated
newest added

When rendering arrays, the output includes special HTML characters (like ') instead of the expected characters (like an apostrophe '). This issue affects the readability and correctness of the rendered...

If you wait for a few minutes you can see the memory bloat. pybar3 version: 0.9.7 ``` from pybars import Compiler, strlist import json import time compiler = Compiler() from...

When installing dependencies for a project using something like: ``` pip install --platform manylinux2014_x86_64 --only-binary=:all: pybars3 ``` we encounter the following error: ``` ERROR: Could not find a version that...

Hi is there any attempt to packaging it for debian OS ?

Fixing the line_num in the render template exception. The line_num was wrong - it was the number of lines in the whole template instead of where the error happened

For cases where one does not generate HTML, handlebars.js provides a useful `noEscape` that disables escaping in double-curly blocks. I'd love to have this option in this module too.

On a call to `pip install pybars3` on a pip version >= 22.3.1 I get the following warning: ``` Collecting pybars3 Downloading pybars3-0.9.7.tar.gz (29 kB) Preparing metadata (setup.py) ... done...

Bumps [setuptools](https://github.com/pypa/setuptools) from 39.2.0 to 65.5.1. Release notes Sourced from setuptools's releases. v65.5.1 No release notes provided. v65.5.0 No release notes provided. v65.4.1 No release notes provided. v65.4.0 No release...

dependencies

Hi, I'm interested in adding partial block support to pybars3 for use in one of my projects! This is my first time contributing to pybars so I'm not sure what...

- I have data: ```json { "data": [ { "name": "first", }, { "name": "second" } ] } ``` - template I used: ``` data.[3].name ``` - error: `list index...