Skip to main content

simplify your HTML building.

Project description

haitch logo

simplify your HTML building.

builds.sr.ht status PyPI - Version

haitch

alternative pronunciation for the letter "H"

My goal is to make writing HTML as fun as writing Python.

Features

  • HTML element builder.
  • 100% test and type coverage.
  • No dependencies.
  • Documentation for common elements.

Quickstart

Install haitch using pip:

$ pip install haitch

Importing the package like so, allows you to build any element you like:

import haitch as H

# Render known `h1` tag.
print(H.h1("Hello, world"))
# <h1>Hello, world</h1>

# Render custom `foo` tag (useful for web components).
print(H.foo("Hello, world"))
# <foo>Hello, world!</foo>

# Fetch emails from data store.
emails = ["jane@aol.com", "bob@example.com", "mark@mail.org"]

# Build an ordered list of emails with ".com" domains.
email_list = H.ol(class_="emails")(
    H.li(H.a(href=f"mailto:{email}")(email))
    for email in sorted(emails)
    if email.endswith(".com")
)

print(email_list)
# <ol class="email-list">
#   <li>
#     <a href="mailto:bob@example.com">bob@example.com</a>
#   </li>
#   <li>
#     <a href="mailto:jane@aol.com">jane@aol.com</a>
#   </li>
# </ol>

Note: printed output above is prettified for readability, but the actual output is minified.

If you want to see how you can hook haitch into your web application, see the FastAPI and Django examples.

Motivation

Inspired by the htbuilder library as an alternative to templating. The library met most of my needs, but lacked type annotations and documentation for HTML elements and attributes. This made me consistently context switch between the MDN docs and my editor. This library attempts to solve this problem by bringing the HTML spec to where you program.

Non-goals

The following features will not be supported:

  • Deprecated elements and attributes: if you want to use them, you can since haitch supports generic elements and attributes. However, I am not going to write the annotations and documentation for them.
  • 100% input validation: this library is meant to assist the developer to write valid HTML with the help of type annotations and documentation. In the end, it is up to the developer and browser to verify that the input is of the correct type. So for example, I will not add any validation to make sure that a <col> element is directly nested inside of a <colgroup> element or that the span attribute for the <col> element is a positive integer.

Contributing

You can setup your local git clone to send email to the mailing list with:

git config sendemail.to '~loges/haitch-dev@lists.sr.ht'

Additional help for setting up git send-email.

License

haitch is distributed under the terms of the BSD-3-Clause license.

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

haitch-0.14.0.tar.gz (50.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

haitch-0.14.0-py3-none-any.whl (99.0 kB view details)

Uploaded Python 3

File details

Details for the file haitch-0.14.0.tar.gz.

File metadata

  • Download URL: haitch-0.14.0.tar.gz
  • Upload date:
  • Size: 50.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.5 cpython/3.14.3 HTTPX/0.28.1

File hashes

Hashes for haitch-0.14.0.tar.gz
Algorithm Hash digest
SHA256 67a5c3ae0d874a481cb68b0a98d993b8095ae7ae0586f90d1309029162ba9d50
MD5 3113ea27ed26e9072472aa26d398095f
BLAKE2b-256 558e7a4e7341196c6e8558df1376e04fd152ca10959d552a27c2cbb67f7ade18

See more details on using hashes here.

File details

Details for the file haitch-0.14.0-py3-none-any.whl.

File metadata

  • Download URL: haitch-0.14.0-py3-none-any.whl
  • Upload date:
  • Size: 99.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.5 cpython/3.14.3 HTTPX/0.28.1

File hashes

Hashes for haitch-0.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bc8ba80fdde7215fc0dbdd2fe71840f27b20506a8e8dae62bd3a2d13ddada923
MD5 2e6ecd86fb11c5ea5d601e88d17aa565
BLAKE2b-256 b4cd4c783b0f1fa0686adb5052ab9230c1119150b765e66439ce19d3b72481d9

See more details on using hashes here.

Supported by

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