Skip to main content

html5witch offers Pythonic HTML5 generation based on xmlwitch

Project description

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

html5witch-0.2.1.tar.gz (4.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page