Skip to main content

A python library for writing and composing HTML.

Project description

neat-html

A python library for writing and composing HTML.

Features:

  • small API to learn (2 functions)
  • fully typed API
  • produces "neatly" formatted HTML
  • written in pure python
  • zero dependencies
  • comprehensive test suite
  • no recursion

Install using pip:

pip install neat-html

Take it for a spin:

>>> from neat_html import h, render
>>> greeting = h("strong", {"style": {"color": "green"}}, "Hello")
>>> html = h("p", {"id": "foo"}, [greeting, ", World!"])
>>> print(render(html))
<p id="foo">
    <strong style="color: green">Hello</strong>, World!
</p>

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

neat_html-0.5.0.tar.gz (5.6 kB view hashes)

Uploaded Source

Built Distribution

neat_html-0.5.0-py3-none-any.whl (7.0 kB view hashes)

Uploaded Python 3

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