Kajiki カジキ Mercurial
Brought to you by:
alfredodeza,
rick446
File | Date | Author | Commit |
---|---|---|---|
docs | 2010-10-02 |
![]() |
[bde1d1] More doc updates |
kajiki | 2013-05-28 |
![]() |
[18683c] Give the FileLoader a *path*, not just a base *... |
.hgignore | 2010-09-27 |
![]() |
[6dc160] Add readme, remove dist files |
.hgtags | 2013-03-09 |
![]() |
[5c5b11] Merge commit |
LICENSE | 2013-03-09 |
![]() |
[5c5b11] Merge commit |
NOTES.txt | 2010-11-27 |
![]() |
[c5a4be] Bump release |
README | 2010-09-27 |
![]() |
[b5b551] Update README |
TODO.txt | 2010-10-01 |
![]() |
[0ed0d3] Add more docs |
setup.cfg | 2013-03-09 |
![]() |
[5c5b11] Merge commit |
setup.py | 2011-08-26 |
![]() |
[7e7511] Fix version info |
speedtest.py | 2010-09-20 |
![]() |
[2444cd] Add performance test suite |
# Kajiki: Really fast well-formed xml templates Are you tired of the slow performance of Genshi? But you still long for the assurance that your output is well-formed that you miss from all those other templating engines? Do you wish you had Jinja's blocks with Genshi's syntax? Then look no further, Kajiki is for you! Kajiki quickly compiles Genshi-like syntax to *real python bytecode* that renders with blazing-fast speed! Don't delay! Pick up your copy of Kajiki today! ## QuickStart :::python >>> import kajiki >>> Template = kajiki.XMLTemplate('''<html> ... <head><title>$title</title></head> ... <body> ... <h1>$title</h1> ... <ul> ... <li py:for="x in range(repetitions)">$title</li> ... </ul> ... </body> ... </html>''') >>> print Template(dict(title='Kajiki is teh awesome!', repetitions=3)).render() <html> <head><title>Kajiki is teh awesome!</title></head> <body> <h1>Kajiki is teh awesome!</h1> <ul> <li>Kajiki is teh awesome!</li><li>Kajiki is teh awesome!</li><li>Kajiki is teh awesome!</li> </ul> </body> </html>