pyTenjin is the fastest template engine for Python.
It is not only very fast but also full-featured and easy-to-use.
You can embed Python statements and expressions into your text file.
Tenjin converts it into Python program and evaluate it.
Features:
* very fast
- x2 faster than Mako
- x3 faster than Cheetah and Myghty
- x9 faster than Django
- x60 faster than Kid
* Full-featured
- layout template
- partial template
- capturing
- preprocessing
- and so on...
* Python 3.0 is now supported officially.
* Google AppEngine (GAE) supported.
http://www.kuwata-lab.com/tenjin/pytenjin-faq.html#faq-google-appengine * Logging support.
* enerate_tostrfun() can take not only encode-encoding but also
decode-encoding.
* (Experimental) HTML helper functions are now provided.
* New command-line option '-a cache' supported.
* You can share caches between all engine objects.
* Pickle-base and text-base template caching support.
* 'cache' option for tenjin.Engine() changed.
* to_str() is changed to encode unicode object into binary(=str)
using utf-8 encoding in default.
* Benchmark script now skips to do benchmark template libraries
which are failed to import.
Bugfix in 0.7.0
----------------
* In preprocessing, error was raised when expression is not string.
Now fixed.