Python templates for huge HTML/XML
        Posted  
        
            by newtover
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by newtover
        
        
        
        Published on 2010-05-14T09:02:45Z
        Indexed on 
            2010/05/14
            9:14 UTC
        
        
        Read the original article
        Hit count: 206
        
Hello,
Recently I needed to generate a huge HTML page containing a report with several thousand row table. And, obviously, I did not want to build the whole HTML (or the underlying tree) in memory. As result, I built the page with the old good string interpolation, but I do not like the solution.
Thus, I wonder whether there are Python templating engines that can yield resulting page content by parts.
© Stack Overflow or respective owner