Skip to main content

HTML 5 Generator

Project description

https://img.shields.io/pypi/l/htmlgen.svg https://img.shields.io/github/release/srittau/python-htmlgen/all.svg https://img.shields.io/pypi/v/htmlgen.svg https://travis-ci.org/srittau/python-htmlgen.svg?branch=master

Library to generate HTML from classes.

Basic usage:

>>> from htmlgen import Division, Span
>>> Division("This is ", Span("important!"), "!")

A more verbose example:

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

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

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

Alternatively, all elements can be used as iterators, 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("important")
...         span.add_css_classes("important")
...         yield span
...         yield "!"
>>> 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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

htmlgen-1.2.2-py3-none-any.whl (44.7 kB view details)

Uploaded Python 3

File details

Details for the file htmlgen-1.2.2-py3-none-any.whl.

File metadata

  • Download URL: htmlgen-1.2.2-py3-none-any.whl
  • Upload date:
  • Size: 44.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.6+

File hashes

Hashes for htmlgen-1.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c375f7b18914fec8b8c25927d35d19cd0a42f1a193009272713d814731b53c73
MD5 b836a2ac3abfb686612217487e1203a7
BLAKE2b-256 bdb6a7a7d009485af769b3464423785a8a2690a9458fe703bd98a7c8c0fbff04

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