Skip to main content

HTML 5 Generator

Project description

Python HTML 5 Generator
=======================

*This library is currently in development. The API is subject to change.
Feedback and suggestions are welcome!*

Basic usage:

>>> from htmlgen import Division, Span
>>> div = Division()
>>> div.id = "my-block"
>>> div.append("This is ")
>>> span = Span()
>>> span.add_css_classes("important")
>>> span.append("important!")
>>> div.append(span)

A tree constructed like this can either be converted to a string:

>>> str(div)
'<div id="my-block">This is <span class="important">important!</span></div>'

Alternatively, all elements can be used as iterator, for example to return
them from a WSGI callback:

>>> def application(env, start_response):
... start_response("200 OK", [("Content-Type", "text/html")])
... return div

There are two different ways to render children of HTML elements. The tree
construction approach shown above is mainly suitable for elements with few
children. The disadvantage of this approach is that the whole tree must be
constructed in memory. An alternative way, best suited for custom sub-classes
of elements, is to override the generate_children method of the Element class:

>>> class MyBlock(Division):
... def __init__(self):
... super(MyBlock, self).__init__()
... self.id = "my-block"
... def generate_children(self):
... yield "This is "
... span = Span()
... span.add_css_classes("important")
... span.append("important!")
... yield span
>>> str(MyBlock())
'<div id="my-block">This is <span class="important">important!</span></div>'

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

htmlgen-0.1.1.tar.gz (6.9 kB view details)

Uploaded Source

File details

Details for the file htmlgen-0.1.1.tar.gz.

File metadata

  • Download URL: htmlgen-0.1.1.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for htmlgen-0.1.1.tar.gz
Algorithm Hash digest
SHA256 ce1ee8cf600c93b7a54a1e75516bc7a06f9c7349b0887b22c32c237b598ba26a
MD5 8dc1e82b7dc42d4f87dbe011ce48b9d8
BLAKE2b-256 879bf57f1eb339ef178c30cc9ce9f012fa8db57408b44a228ffe3dbf8c99009b

See more details on using hashes here.

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