Skip to main content

No project description provided

Project description

fastertags, an HTML tag library

A typesafe library for writing HTML in Python:

import fastertags as h

if __name__ == "__main__":
    doc = h.html(
        h.head(
            h.title("An example document"),
        ),
        h.body(
            h.h1("Title"),
            h.p(class_="css-class-name")("some paragraph"),
            h.p("Some more paragraph"),
        ),
    )
    print(doc)

yields

<!DOCTYPE html><html><head><title>An example document</title></head><body><h1>Title</h1><p class="css-class-name">some paragraph</p><p>Some more paragraph</p></body></html>

Tags and Attributes are scraped from the WHATWG HTML Spec at https://html.spec.whatwg.org/. Version numbers reflect when the scraping was done, the current version 0.2024.11 was taken in December 2024.

HTMX

fastertags is a standalone building block for fasterhtml, which in turn uses HTMX. Most notably, fastertags serializes event-handler on* attributes as hx-on:*, for example hx-on:click instead of onclick.

This can be changed by setting HTMLElement.EVENT_HANDLER_PREFIX:

doc = h.h1().on("click", "alert('clicked')")("Title")

print(doc)
# <h1 hx-on:click="alert('clicked')">Title</h1>

h.HTMLElement.EVENT_HANDLER_PREFIX= "on"

print(doc)
# <h1 onclick="alert('clicked')">Title</h1>

Scoped CSS

fastertags emulates the scoped attributes on <style> tags by wrapping its contents in @scope { ... }. The h.style() function does feature the boolean attribute scoped that allows for True, False, or None. The default is None, which means contents will be wrapped in @scope { ... } if the element is not serialized as the child of a head element:

doc = h.html(
    h.head(
        h.style("not scoped"),
    ),
    h.body(
        h.style("scoped"),
    ),
)
print(doc)

yields

<!DOCTYPE html><html><head><style>not scoped</style></head><body><style>@scope {scoped}</style></body></html>

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

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

fastertags-0.2024.11-py3-none-any.whl (22.8 kB view details)

Uploaded Python 3

File details

Details for the file fastertags-0.2024.11-py3-none-any.whl.

File metadata

  • Download URL: fastertags-0.2024.11-py3-none-any.whl
  • Upload date:
  • Size: 22.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fastertags-0.2024.11-py3-none-any.whl
Algorithm Hash digest
SHA256 469a8bee899bf4f447eddbd635feaf894e6a27a87e8cd0692d61763bfd8fc5ac
MD5 3cdae41d084da8041ad12e196b82f951
BLAKE2b-256 081d476d5ff1295523d25b3bb2fb9ae6054ab135d4cb557fef4e0d58737fb113

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