Skip to main content

A fast indentation-preserving template engine.

Project description

Overview

Example

import fett

fett.Template('''{{ for customer in customers }}
{{ if i even }}
Even: {{ customer.name }}
{{ else }}
Odd: {{ customer.name }}
{{ end }}
{{ else }}
No customers :(
{{ end }}''').render({'customers': [
    {'name': 'Bob'},
    {'name': 'Elvis'},
    {'name': 'Judy'}
]})

Syntax

Tag Format

Description

{{ <expression> }}

Substitutions

{{ `foo` <expression> }}

Substitutions

{{ format <name> }}

Metaformatting

{{ if <expression> }}

Conditionals

{{ for <name> in <expression> }}

Loops

{{ else }}

{{ end }}

Block termination

{{ # <comment> }}

Comments

Spaces between tag opening/closing delimiters are optional.

Expressions

An expression is given for Substitutions, Conditionals, and Loops.

Expressions take the following form:

<name>[.<subfield>…] [<filter> [<filter2>…]]

Instead of specifying a field path, you can start an expression using a string literal:

<literal> [<filter> [<filter2>…]]

You can use filters to modify a single value in simple ways. For example, the loop iteration counter i counts from 0, but users often wish to count from 1. You can obtain a count-from-1 value with the expression i inc.

The full list of filters:

Filter Name

Effect

car

Returns the first element of a list.

cdr

Returns all but the first element of a list.

dec

Decrements a value representable as an integer by one.

even

Returns true iff its input is representable as an even integer.

escape

Encodes &, <, >, , and characters with HTML entities.

inc

Increments a value representable as an integer by one.

len

Returns the length of a list.

not

Returns the inverse of a boolean.

odd

Returns true iff its input is representable as an odd integer.

negative

Returns true iff its input is representable as an integer < 0.

positive

Returns true iff its input is representable as an integer > 0.

split

Splits a value into a list by whitespace.

strip

Returns the input string with surrounding whitespace removed.

striptags

Remove HTML tags from a value.

timesNegOne

Returns int(input) * -1

zero

Returns true iff the input is zero

Filter Name

Effect

upperCase

Returns a Unicode-aware uppercase version of the input.

lowerCase

Returns a Unicode-aware lowercase version of the input.

Filter Name

Effect

add(n)

Increments a value representable as an integer by n.

minus(n)

Decrements a value representable as an integer by n.

equal(value)

Returns true iff a value equals the given value.

lessThan(n)

Returns true iff n < the given value.

lessThanOrEqual(n)

Returns true iff n <= the given value.

greaterThan(n)

Returns true iff n > the given value.

greaterThanOrEqual(n)

Returns true iff n >= the given value.

Substitutions

Metaformatting

Conditionals

Loops

Comments

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

fett-0.4.0.tar.gz (6.9 kB view details)

Uploaded Source

Built Distribution

fett-0.4.0-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file fett-0.4.0.tar.gz.

File metadata

  • Download URL: fett-0.4.0.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.1 CPython/3.10.7 Linux/5.15.74-3-MANJARO

File hashes

Hashes for fett-0.4.0.tar.gz
Algorithm Hash digest
SHA256 56912ad93cf537a450b4fb15ee97aedd97acf81a14e48375c523fffdeb182986
MD5 771ba7be023267a3a01d811d65c4c117
BLAKE2b-256 13c362d07518d5f12673b6894211f4320046987e7a2d5664a73337d521957a04

See more details on using hashes here.

File details

Details for the file fett-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: fett-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 6.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.1 CPython/3.10.7 Linux/5.15.74-3-MANJARO

File hashes

Hashes for fett-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 01b43baf8c1b2520f52bc1f8e49cd0a08e9290292c8be5acc1c54bdc530e75cf
MD5 2af79fca32638ea87c78f3c61def095e
BLAKE2b-256 46e69c2150926e5aea200ac862fb7b7d9f14627c8354e667cd82aa15e2fd4343

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