Skip to main content

Mustache templating language renderer

Project description

PyPI version Build Status Coverage Status

A python implementation of the mustache templating language.

Why chevron?

I’m glad you asked!

chevron is fast

Chevron runs in less than half the time of pystache (Which is not even up to date on the spec). And in about 70% the time of Stache (A ‘trimmed’ version of mustache, also not spec compliant).

chevron is pep8

The flake8 command is run by travis to ensure consistency.

chevron is spec compliant

Chevron passes all the unittests provided by the spec (in every version listed below).

If you find a test that chevron does not pass, please report it.

chevron is Python 2 and 3 compatible

Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, and 3.6 are all tested by travis.

USAGE

Commandline usage: (if installed via pypi)

usage: chevron [-h] [-v] [-d DATA] [-p PARTIALS_PATH] [-e PARTIALS_EXT]
               [-l DEF_LDEL] [-r DEF_RDEL]
               template

positional arguments:
  template              The mustache file

optional arguments:
  -h, --help            show this help message and exit
  -v, --version         show program's version number and exit
  -d DATA, --data DATA  The json data file
  -p PARTIALS_PATH, --path PARTIALS_PATH
                        The directory where your partials reside
  -e PARTIALS_EXT, --ext PARTIALS_EXT
                        The extension for your mustache partials, 'mustache'
                        by default
  -l DEF_LDEL, --left-delimiter DEF_LDEL
                        The default left delimiter, "{{" by default.
  -r DEF_RDEL, --right-delimiter DEF_RDEL
                        The default right delimiter, "}}" by default.

Python usage with strings

import chevron

chevron.render('Hello, {{ mustache }}!', {'mustache': 'World'})

Python usage with file

import chevron

with open('file.mustache', 'r') as f:
    chevron.render(f, {'mustache': 'World'})

Python usage with unpacking

import chevron

args = {
  template: 'Hello, {{ mustache }}!',

  data: {
    'mustache': 'World'
  }
}

chevron.render(**args)

chevron supports partials (via dictionaries)

import chevron

args = {
    template: 'Hello, {{> thing }}!',

    partials_dict: {
        'thing': 'World'
    }
}

chevron.render(**args)

chevron supports partials (via the filesystem)

import chevron

args = {
    template: 'Hello, {{> thing }}!',

    # defaults to .
    partials_path: 'partials/',

    # defaults to mustache
    partials_ext: 'ms',
}

# ./partials/thing.ms will be read and rendered
chevron.render(**args)

INSTALL

  • with git

$ git clone https://github.com/noahmorrison/chevron.git

or using submodules

$ git submodules add https://github.com/noahmorrison/chevron.git

Also available on pypi!

  • with pip

$ pip install chevron

TODO

  • get popular

  • have people complain

  • fix those complaints

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chevron-0.12.0.tar.gz (8.2 kB view details)

Uploaded Source

Built Distribution

chevron-0.12.0-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file chevron-0.12.0.tar.gz.

File metadata

  • Download URL: chevron-0.12.0.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for chevron-0.12.0.tar.gz
Algorithm Hash digest
SHA256 279b5113ac6ca3abefffa360bffbf6b397476c80d38c82896473d1dd6f82d86a
MD5 c390eeffeb46316eac11ebc9c3d2bdde
BLAKE2b-256 d0b2e0c12b8de2f8e6b6f610d98a0b767aa6f80261aa50819f247da605045e9c

See more details on using hashes here.

File details

Details for the file chevron-0.12.0-py3-none-any.whl.

File metadata

File hashes

Hashes for chevron-0.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4b8bed4da5361f917234da82e34227512cbe786bb50ee3c59ce78e6b9c8708c1
MD5 fc62bd8c6d7e3bd887f2e3fa9f326145
BLAKE2b-256 1a52040085bc41832afb5eba77557fbe47daf2f6be1fd544f25e253f1ddb6834

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page