NonTemplate

Nontemplate is not a Templating Language
Download

NonTemplate Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • Nick Moore
  • Publisher web site:
  • https://addons.mozilla.org/en-US/firefox/addon/12305

NonTemplate Tags


NonTemplate Description

Nontemplate is not a Templating Language NonTemplate is a software that allows you to generate simple XML output directly in your Python code with a minimum of syntactic noise. It uses the with statement introduced in Python 2.5 to ensure that once a tag is opened, it will be closed.Python code and template codes can be interleaved naturally, without resorting to restrictive language constructions. Your favourite debugger can see, and set breakpoints in, every level of your template. 100% pure Python (>= 2.5), and it works just fine in Python 3.0 as well.Performance is comparable to the commonly used templating languages and is better than most. Asyncronous use is easy: NonTemplate is happy reading from iterables and writing to IO streams. This means you can start sending XHTML to your clients while your database is still retrieving rows ...Exampleimport nontemplateD = nontemplate.documentwith D.html(): D._comment("this is a test") with D.head(): D.title("foo") with D.body(): with D.h1(id="foo"): D._text("This is a test") with D.table(_class="cool"): with D.tbody(): for row in range(1,11): with D.tr(): for col in range(1,11): if row == col: D.td(_class="same")("%d" % row) else: D.td(_class="diff")("%d,%d" % (row,col)) Requirements: · Python


NonTemplate Related Software