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.5.tar.gz (11.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.5-py3-none-any.whl (13.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pyhtml5-0.0.5.tar.gz
  • Upload date:
  • Size: 11.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.5.tar.gz
Algorithm Hash digest
SHA256 445d113f5726d6c4e8125b919f153d46a2341256e48adf21239411b8ba694a44
MD5 8d67ae0516fce03333f5f33b9d2fa9e8
BLAKE2b-256 33837896a44c60a1827730cb6778f75b3334978d7a08604a93b2786f18b7e80a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhtml5-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 13.4 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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 6d2b4890259aa046048f12af843097e8d7a2fd874269276aadaefb2a084806a3
MD5 928d0ff9f677a036b6ea41cf892b6806
BLAKE2b-256 8b0621a04a48e49bc6ff2117fde0c10cc462f582536cd71ad2fdc723d3a4f0da

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