Building a toy template engine in Python
alexmic.net
Building a toy template engine in Python
1–10 of 13 posts
Re: Building a toy template engine in Python
#2Re: Building a toy template engine in Python
#3Re: Building a toy template engine in Python
#4thanks for sharing this alexmic. I tried to built my own template engine but I think your approach is much better
Re: Building a toy template engine in Python
#5Also, this page maintains links to many python parsing options - http://nedbatchelder.com/text/python-parsers.html
Re: Building a toy template engine in Python
#6Re: Building a toy template engine in Python
#7https://github.com/dropbox/pyxl
I don't work at Dropbox but I did work at Cove where this was originally developed and it is great. Makes working with HTML in Python so easy.
I also my own version of it that I have rewritten to treat the HTML object more like jQuery does and added more jQuery methods to it.
Re: Building a toy template engine in Python
#8Something along these lines: https://github.com/thomaslee/viking-poc/blob/master/viking#L...
(Disclaimer: I wrote the Python-AST-to-PyObject transformation code for Python 2.6 that made this sort of stuff possible -- fun hack!)
Re: Building a toy template engine in Python
#9Edit: which isn't meant to detract from the fact that this is a great article.
Re: Building a toy template engine in Python
#10I'm not sure I like the idea of parsing templates with regular expressions. There is a better way, as demonstrated in Robe Pike's video[1] detailing how the Go template language is implemented. Edit: which isn't meant to detract from the fact that this is a great article. [1] http://www.youtube.com/watch?v=HxaD_trXwRE