skip to navigation
skip to content

html5witch 0.2.1

html5witch offers Pythonic HTML5 generation based on xmlwitch

Downloads ↓

html5witch offers Pythonic HTML5 generation based on xmlwitch. BSD-licensed.

Usage

>>> import html5witch
>>> doc = html5witch.Builder()
>>> with doc.html:
...     with doc.head:
...        doc.title('Title')
...     with doc.body:
...        doc.p('Hello World')
...        with doc.form(action="/", method="post"):
...            doc.input(type="input", name="my_input_field")
...
>>> print(doc)
<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Title</title>
  </head>
  <body>
    <p>Hello World</p>
    <form action="/" method="post">
      <input type="input" name="my_input_field">
    </form>
  </body>
</html>

Setup

$ pip install html5witch # or
$ easy_install html5witch # or
$ cd xmlwitch-0.2.1; python setup.py install
$ cd html5witch-0.2.1; python setup.py install
 
File Type Py Version Uploaded on Size # downloads
html5witch-0.2.1.tar.gz (md5) Source 2011-01-12 4KB 363