An experimental Python binding of the Rust MiniJinja template engine.
Project description
minijinja-py
is an experimental binding of
MiniJinja to Python. It has somewhat
limited functionality compared to the Rust version. These bindings use
maturin and pyo3.
You might want to use MiniJinja instead of Jinja2 when the full feature set of Jinja2 is not required and you want to have the same rendering experience of a data set between Rust and Python.
With these bindings MiniJinja can render some Python objects and values that are passed to templates, but there are clear limitations with regards to what can be done.
To install MiniJinja for Python you can fetch the package from PyPI:
$ pip install minijinja
Basic API
The basic API is hidden behind the Environment
object. It behaves almost entirely
like in minijinja
with some Python specific changes. For instance instead of
env.set_debug(True)
you use env.debug = True
. Additionally instead of using
add_template
or attaching a source
you either pass a dictionary of templates
directly to the environment or a loader
function.
from minijinja import Environment
env = Environment(templates={
"template_name": "Template source"
})
To render a template you can use the render_template
method:
result = env.render_template('template_name', var1="value 1", var2="value 2")
print(result)
Purpose
MiniJinja attempts a certain level of compatibility with Jinja2, but it does not try to achieve this at all costs. As a result you will notice that quite a few templates will refuse to render with MiniJinja despite the fact that they probably look quite innocent. It is however possible to write templates that render to the same results for both Jinja2 and MiniJinja. This raises the question why you might want to use MiniJinja.
The main benefit would be to achieve the exact same results in both Rust and Python. Additionally MiniJinja has a stronger sandbox than Jinja2 and might perform ever so slightly better in some situations. However you should be aware that due to the marshalling that needs to happen in either direction there is a certain amount of loss of information.
Dynamic Template Loading
MiniJinja's Python bindings inherit the underlying behavior of how MiniJinja loads
templates. Templates are loaded on first use and then cached. The templates are
loaded via a loader. To trigger a reload you can call env.reload()
or
alternatively set env.reload_before_render
to True
.
def my_loader(name):
segments = []
for segment in name.split("/"):
if "\\" in segment or segment in (".", ".."):
return None
segments.append(segment)
try:
with open(os.path.join(TEMPLATES, *segments)) as f:
return f.read()
except (IOError, OSError):
pass
env = Environment(loader=my_loader)
env.reload_before_render = True
print(env.render_template("index.html"))
Alternatively templates can manually be loaded and unloaded with env.add_template
and env.remove_template
.
Auto Escaping
The default behavior is to use auto escaping file files ending in .html
. You can
customize this behavior by overriding the auto_escape_callback
:
env = Environment(auto_escape_callback=lambda x: x.endswith((".html", ".foo")))
MiniJinja uses markupsafe if it's available
on the Python side. It will honor __html__
.
Finalizers
Instead of custom formatters like in MiniJinja, you can define a finalizer instead
which is similar to how it works in Jinja2. It's passed a value (or optional also
the state as first argument when pass_state
is used) and can return a new value.
If the special NotImplemented
value is returned, the original value is rendered
without any modification:
from minijinja import Environment
def finalizer(value):
if value is None:
return ""
return NotImplemented
env = Environment(finalizer=finalizer)
assert env.render_str("{{ none }}") == ""
State Access
Functions passed to the environment such as filters or global functions can
optionally have the template state passed by using the pass_state
parameter.
This is similar to pass_context
in Jinja2. It can be used to look at the
name of the template or to look up variables in the context.
from minijinja import pass_state
@pass_state
def my_filter(state, value):
return state.lookup("a_variable") + value
env.add_filter("add_a_variable", my_filter)
Runtime Behavior
MiniJinja uses it's own runtime model which is not matching the Python
runtime model. As a result there are clear gaps in beahvior between the
two and only limited effort is made to bridge them. For instance you will
be able to call some methods of types, but for instance builtins such as
dicts and lists do not expose their methods on the MiniJinja side. This
means that it's very intentional that if you pass a dictionary to MiniJinja,
the Python .items()
method is unavailable.
Here is what this means for some basic types:
- Python dictionaries and lists (as well as other objects that behave as sequences) appear in the MiniJinja side as native lists. They do not expose any specific other behavior and when they move back to the Python side they will appear as basic lists. Specifically this means that a tuple (which does not exist in MiniJinja) when moving from Python to MiniJinja turns into a list and will remain a list when it moves back.
- Python objects are represented in MiniJinja similarly to dicts, but they retain all
their meaningful Python APIs. This means they stringify via
__str__
and they allow the MiniJinja code to call their non-underscored methods. Note that there is no extra security layer in use at the moment so take care of what you pass there. - MiniJinja's python binding understand what
__html__
is when it exists on a string subclass. This means that amarkupsafe.Markup
object will appear as safe string in MiniJinja. This information can also flow back to Python again.
Sponsor
If you like the project and find it useful you can become a sponsor.
License and Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for minijinja-1.0.0-cp38-abi3-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1408ade4b9b0edd136f0ba89cb49c8cb6b86429410d9a20399de43f3099d23d8 |
|
MD5 | 78b25658380cf73cabd3edd782e3e3e9 |
|
BLAKE2b-256 | 95e9b92997b7de7de93a3ad10fc05b09890891453078437d961e878f811091be |
Hashes for minijinja-1.0.0-cp38-abi3-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1886c8ec7adfe339029fb002559e9b1518b97953dd622183743e58724ff37f9a |
|
MD5 | 2036ae3a3c2469a25d1f2d0bf5b49e9b |
|
BLAKE2b-256 | 18e8cc6572d37bfddadf1d269210be5dc04695a617ebaa04833885446caf4fd5 |
Hashes for minijinja-1.0.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c4274ecac7dd716b8e61e0b4024ef5d1c616336d7780824b611b5074be63eae |
|
MD5 | be3f6483c5543b5fcbaf489c7a4258a0 |
|
BLAKE2b-256 | 859bd4b828ad101c5c5ac1dd14c00f9527bf7d7b09c9b7fe86ae3322e5da0a5d |
Hashes for minijinja-1.0.0-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6d6f96233d114d16a6d99a52d56909164ef0e20936babf7eb23f3d18f45119a |
|
MD5 | 89cf314f726f1e16ab367280c5a3f11d |
|
BLAKE2b-256 | c1ade3c5dd1dc989f1a6ed7779787ff540e090bcf8195eddc41d3f17a076c3b0 |
Hashes for minijinja-1.0.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f332dbf2cd3e6d64c218b4bded4a6d3401e3d09a5389cdd713593dbd74f43300 |
|
MD5 | 6a529e7029fa1ef2a1bb6007a84ef645 |
|
BLAKE2b-256 | 4601233340627350945af34ace9e69e247ff4f2de0ad745fe0ad55046a27b145 |
Hashes for minijinja-1.0.0-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfb31b46284c4fab1581a0f273337a11f002d3ec87c3a1cd093ab824975f0b4d |
|
MD5 | 2791c93cc01177136e19c9c7e54c0768 |
|
BLAKE2b-256 | ccfcbaf8cacf9e6c53be5b28fc07d1aa00f942722d5bee6acc8dc2adb16b971f |
Hashes for minijinja-1.0.0-cp38-abi3-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a67e34507104c77fcc5294c8aaf63a5e0baabdb7493c90dab8a545fcac686c41 |
|
MD5 | 04e0ed431b515449e08ed20d739e7ecf |
|
BLAKE2b-256 | 055d2ee176b80af92b0dbaee9acd9bb3b7dec6175add4da556cd8aac9dffdc92 |