Skip to main content

A small library for generating HTML & CSS using Python syntax.

Project description

pyhtml5

A tiny Python library for writing HTML and CSS in code — with clear, full element names like Division, Paragraph, and Button. Render to a string in regular Python, or mount directly into the browser DOM when running under PyScript.


Why use it?

  • Readable structure: with Division(): Paragraph("Hello")
  • Works anywhere: strings in CPython, live DOM in PyScript
  • Built-in CSS: Stylesheet().rule(".card", padding="16px")

Install

pip install pyhtml5

Quick start

Build HTML (string)

from pyhtml5 import Division, Paragraph, Anchor, html_string

with Division(class_="card") as root:
    Paragraph("Hello from pyhtml5! ")
    Anchor("Read more", href="https://example.com", target="_blank")

print(html_string(root))

Use in PyScript (mount to the DOM)

from pyhtml5 import Division, Paragraph

with Division(class_="notice") as box:
    Paragraph("Running inside PyScript!")

box.mount("#app")   # or just box.mount() to append to <body>

CSS in code

from pyhtml5 import Stylesheet, css_string

with Stylesheet() as css:
    css.rule(":root", color_scheme="light dark")
    css.rule(".card", padding="16px", border="1px solid #ddd", border_radius="12px")

print(css_string(css))  # in PyScript, use css.mount() to inject a <style>

License

MIT License

See LICENSE for details.

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

pyhtml5-0.0.6.tar.gz (14.6 kB view details)

Uploaded Source

Built Distribution

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

pyhtml5-0.0.6-py3-none-any.whl (16.2 kB view details)

Uploaded Python 3

File details

Details for the file pyhtml5-0.0.6.tar.gz.

File metadata

  • Download URL: pyhtml5-0.0.6.tar.gz
  • Upload date:
  • Size: 14.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pyhtml5-0.0.6.tar.gz
Algorithm Hash digest
SHA256 202b116b3d90bfa6aecfe81e5c871c021f02d2ffdb1131530e6119d843f9a97c
MD5 b918de4ab6e916e5bcd7cd7bb0b9899e
BLAKE2b-256 806c49a51c68872769caf0133ec0ff5301ae8d47bad72b7b11707c89f6ad4fbd

See more details on using hashes here.

File details

Details for the file pyhtml5-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: pyhtml5-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pyhtml5-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 a849b6ddcc206e87f390c095144a8788603c7e907233ab3db8810f12563dd87f
MD5 2c2682218ea1a14580ad1d5e5c4773ca
BLAKE2b-256 31df787e1c994918b6ad6d8bdd6481d130e8ac83335acda4f3fd7a3e6e55cf60

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