A light-weight, fully functional, general purpose Python templating engine that fits in one single file.
Project description
Templite
==============
A light-weight, fully functional, general purpose Python templating engine that fits in one single file.
I'm not the author, credits go to Thimo Kraemer and Tomer Filiba. You can get the original source here_.
I'm just packaging it and making it available on pypi and github to give it visibility.
(If the authors want the repository ownership, please contact me)
Usage example::
from templite import Templite
template = r"""
This template demonstrates the usage of Templite.
Within the defined delimiters we can write pure Python code:
${
def say_hello(name):
write('Hello %s!' % name)
}$
And now we call the function: ${ say_hello('World') }$
Escaped starting delimiter: $\{
${ write('Escaped ending delimiter: }\$') }$
Also block statements are possible:
${ if x > 10: }$
x is greater than 10
${ :elif x > 5: }$
x is greater than 5
${ :else: }$
x is not greater than 5
${ :end-if / only the starting colon is essential to close a block }$
${ for i in range(x): }$
loop index is ${ i }$
${ :end-for }$
${ # this is a python comment }$
Single variables and expressions starting with quotes are substituted
automatically:
Instead ${write(x)}$ you can write ${x}$ or ${'%s' % x}$ or ${"", x}$
Therefore standalone statements like break, continue or pass
must be enlosed by a semicolon: $\{continue;}\$
To include another template, just call "include":
${ include('template.txt') }$
"""
t = Templite(template)
print t.render(x=8)
"""
Which outputs ::
This template demonstrates the usage of Templite.
Within the defined delimiters we can write pure Python code:
And now we call the function: Hello World!
Escaped starting delimiter: ${
Escaped ending delimiter: }$
Also block statements are possible:
x is greater than 5
loop index is 0
loop index is 1
loop index is 2
loop index is 3
loop index is 4
loop index is 5
loop index is 6
loop index is 7
Single variables and expressions starting with quotes are substituted
automatically:
Instead 8 you can write 8 or 8 or 8
Therefore standalone statements like break, continue or pass
must be enlosed by a semicolon: ${continue;}$
To include another template, just call "include":
This is the content of template.txt
.. _here: http://www.joonis.de/en/code/templite
==============
A light-weight, fully functional, general purpose Python templating engine that fits in one single file.
I'm not the author, credits go to Thimo Kraemer and Tomer Filiba. You can get the original source here_.
I'm just packaging it and making it available on pypi and github to give it visibility.
(If the authors want the repository ownership, please contact me)
Usage example::
from templite import Templite
template = r"""
This template demonstrates the usage of Templite.
Within the defined delimiters we can write pure Python code:
${
def say_hello(name):
write('Hello %s!' % name)
}$
And now we call the function: ${ say_hello('World') }$
Escaped starting delimiter: $\{
${ write('Escaped ending delimiter: }\$') }$
Also block statements are possible:
${ if x > 10: }$
x is greater than 10
${ :elif x > 5: }$
x is greater than 5
${ :else: }$
x is not greater than 5
${ :end-if / only the starting colon is essential to close a block }$
${ for i in range(x): }$
loop index is ${ i }$
${ :end-for }$
${ # this is a python comment }$
Single variables and expressions starting with quotes are substituted
automatically:
Instead ${write(x)}$ you can write ${x}$ or ${'%s' % x}$ or ${"", x}$
Therefore standalone statements like break, continue or pass
must be enlosed by a semicolon: $\{continue;}\$
To include another template, just call "include":
${ include('template.txt') }$
"""
t = Templite(template)
print t.render(x=8)
"""
Which outputs ::
This template demonstrates the usage of Templite.
Within the defined delimiters we can write pure Python code:
And now we call the function: Hello World!
Escaped starting delimiter: ${
Escaped ending delimiter: }$
Also block statements are possible:
x is greater than 5
loop index is 0
loop index is 1
loop index is 2
loop index is 3
loop index is 4
loop index is 5
loop index is 6
loop index is 7
Single variables and expressions starting with quotes are substituted
automatically:
Instead 8 you can write 8 or 8 or 8
Therefore standalone statements like break, continue or pass
must be enlosed by a semicolon: ${continue;}$
To include another template, just call "include":
This is the content of template.txt
.. _here: http://www.joonis.de/en/code/templite
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
templite-0.2.1.tar.gz
(11.0 kB
view details)
File details
Details for the file templite-0.2.1.tar.gz
.
File metadata
- Download URL: templite-0.2.1.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73c5bb138b4bfd538a9189d9336f16910d2184aa373855f146290aea5e5b42cd |
|
MD5 | c8becd0411a3b9d390d5e403cf84cecf |
|
BLAKE2b-256 | 6f64b1ec268f33b649c9206f4a7809a303b274c8308d926724441a4b59fe0c31 |