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.3.tar.gz (10.5 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.3-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pyhtml5-0.0.3.tar.gz
  • Upload date:
  • Size: 10.5 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.3.tar.gz
Algorithm Hash digest
SHA256 299d64d49aab86af60cf7df8081d1bebab7b4e2b4e62c0f02dca6415de7598d2
MD5 d18642f5c8a8063739df349d5d0a0e2f
BLAKE2b-256 0a0a75fb50eb25652519d5402a02941a13741497a04ab756c57486af1bd2bb75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhtml5-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 11.5 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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 149d52723bab6dee914fbaac5d8bbcac364d4e6724281d7856213433aed7a132
MD5 9c2899714a25f7687a593df7733b0a06
BLAKE2b-256 dd377725eac46ce961d8fa4c660f1e5dcde60d5be47a945724dbfd00deac0bae

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