This updated fork of Pystache is currently tested on Python 3.6+ and in Conda, on Linux, Macos, and Windows (Python 2.7 support has been removed).
Pystache is a Python implementation of Mustache. Mustache is a framework-agnostic, logic-free templating system inspired by ctemplate and et by Ivan Formichev. Like ctemplate, Mustache "emphasizes separating logic from presentation: it is impossible to embed application logic in this template language."
The mustache(5) man page provides a good introduction to Mustache's syntax. For a more complete (and more current) description of Mustache's behavior, see the official Mustache spec.
Pystache is semantically versioned and older versions can still be found on PyPI. This version of Pystache now passes all tests in version 1.1.3 of the spec.
This repo is now pre-commit enabled for various linting and format checks
(and in many cases, automatic fixes). The checks run on commit/push and will
fail the commit (if not clean) with some checks performing simple file corrections.
Simply review the changes and adjust (if needed) then git add
the files and continue.
If other checks fail on commit, the failure display should explain the error
types and line numbers. Note you must fix any fatal errors for the commit to
succeed; some errors should be fixed automatically (use git status
and
git diff
to review any changes).
Note pylint
is the primary check that requires your own input, as well
as a decision as to the appropriate fix action. You must fix any pylint
warnings (relative to the baseline config score) for the commit to succeed.
See the pre-commit docs under docs/dev/
for more information.
You will need to install pre-commit before contributing any changes; installing it using your system's package manager is recommended, otherwise install with pip into your local user's virtual environment using something like:
$ sudo emerge pre-commit --or--
$ pip install pre-commit
then install it into the repo you just cloned:
$ git clone https://github.com/PennyDreadfulMTG/pystache
$ cd pystache
$ pre-commit install
$ pre-commit install-hooks
It's usually a good idea to update the hooks to the latest version:
pre-commit autoupdate
Pystache is tested with--
- Python 3.6
- Python 3.7
- Python 3.8
- Python 3.9
- Conda (py36-py39)
Distribute (the setuptools fork) is no longer required over setuptools, as the current packaging is now PEP517-compliant.
JSON support is needed only for the command-line interface and to run the spec tests; PyYAML can still be used (see the Develop section).
Official support for Python 2 will end with Pystache version 0.6.0.
pip install -U pystache -f https://github.com/PennyDreadfulMTG/pystache/releases/
And test it:
pystache-test
To install and test from source (e.g. from GitHub), see the Develop section.
>>> import pystache
>>> print(pystache.render('Hi {{person}}!', {'person': 'Mom'}))
Hi Mom!
You can also create dedicated view classes to hold your view logic.
Here's your view class (in ../pystache/tests/examples/readme.py):
class SayHello(object):
def to(self):
return "Pizza"
Instantiating like so:
>>> from pystache.tests.examples.readme import SayHello
>>> hello = SayHello()
Then your template, say_hello.mustache (by default in the same directory as your class definition):
Hello, {{to}}!
Pull it together:
>>> renderer = pystache.Renderer()
>>> print(renderer.render(hello))
Hello, Pizza!
For greater control over rendering (e.g. to specify a custom template
directory), use the Renderer
class like above. One can pass attributes
to the Renderer class constructor or set them on a Renderer instance. To
customize template loading on a per-view basis, subclass TemplateSpec
.
See the docstrings of the
Renderer
class and
TemplateSpec
class for more information.
You can also pre-parse a template:
>>> parsed = pystache.parse(u"Hey {{#who}}{{.}}!{{/who}}")
>>> print(parsed)
['Hey ', _SectionNode(key='who', index_begin=12, index_end=18, parsed=[_EscapeNode(key='.'), '!'])]
And then:
>>> print(renderer.render(parsed, {'who': 'Pops'}))
Hey Pops!
>>> print(renderer.render(parsed, {'who': 'you'}))
Hey you!
This section describes how Pystache handles unicode, strings, and encodings.
Internally, Pystache uses only unicode strings. For input, Pystache accepts both unicode strings and byte strings. For output, Pystache's template rendering methods return only unicode.
Pystache's Renderer
class supports a number of attributes to control
how Pystache converts byte strings to unicode on input. These include
the file_encoding
, string_encoding
, and decode_errors
attributes.
The file_encoding
attribute is the encoding the renderer uses to
convert to unicode any files read from the file system. Similarly,
string_encoding
is the encoding the renderer uses to convert any other
byte strings encountered during the rendering process into unicode (e.g.
context values that are encoded byte strings).
The decode_errors
attribute is what the renderer passes as the
errors
argument to str()
. The valid values for
this argument are strict
, ignore
, and replace
.
Each of these attributes can be set via the Renderer
class's
constructor using a keyword argument of the same name. See the Renderer
class's docstrings for further details. In addition, the file_encoding
attribute can be controlled on a per-view basis by subclassing the
TemplateSpec
class. When not specified explicitly, these attributes
default to values set in Pystache's defaults
module.
To test from a source distribution (without installing)--
python test_pystache.py
To test Pystache with multiple versions of Python (with a single command!) and different platforms, you can use tox:
pip install tox
tox -e setup
To run tests on multiple versions with coverage, run:
tox -e py38-linux,py39-linux # for example
(substitute your platform above, eg, macos or windows)
The source distribution tests also include doctests and tests from the Mustache spec. To include tests from the Mustache spec in your test runs:
git submodule update --init
The test harness parses the spec's (more human-readable) yaml files if PyYAML is present. Otherwise, it parses the json files. To install PyYAML--
pip install pyyaml
Once the submodule is available, you can run the full test set with:
tox -e setup . ext/spec/specs
To run a subset of the tests, you can use nose:
pip install nose
nosetests --tests pystache/tests/test_context.py:GetValueTests.test_dictionary__key_present
There is(was) a mailing list. Note that there is a bit of a delay between posting a message and seeing it appear in the mailing list archive.
>>> import pystache
>>> context = { 'author': 'Chris Wanstrath', 'maintainer': 'Chris Jerdonek','refurbisher': 'Steve Arnold', 'new_maintainer': 'Thomas David Baker' }
>>> print(pystache.render("Author: {{author}}\nMaintainer: {{maintainer}}\nRefurbisher: {{refurbisher}}\nNew maintainer: {{new_maintainer}}", context))
Author: Chris Wanstrath
Maintainer: Chris Jerdonek
Refurbisher: Steve Arnold
New maintainer: Thomas David Baker
Pystache logo by David Phillips is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.