Light html generator
Project description
Abstract
Light html generator
Install
pip3 install htmlight
Disclaimer
Despite htmlight is able to generate full html page, it is designed to generate small fragments of code like:
from htmlight import h
from flask_babel import lazy_gettext
from flask_login import current_user
TEMPLATE = h.div(h.hr(), h.span("{hello} {username}"), h.hr())
def get_html():
return TEMPLATE.format(hello=lazy_gettext("Hello"), username=current_user.name)
or
from htmlight import h
from flask_babel import lazy_gettext
from flask_login import current_user
def get_html():
return h.div(h.hr(), h.span(lazy_gettext("Hello"), " ", current_user.name), h.hr()))
Usage
Code
from htmlight import h
landing_page = h.html(
h.head(
h.title("Welcome to Our Website"),
h.link(attributes={"rel": "stylesheet", "href": "styles.css"}),
),
h.body(
h.header(
h.h1(
"Welcome to Our Website",
attributes={
"style": (
" color:"
" #333;"
" text-align:"
" center;"
" background-color:"
" #F0F0F0;"
" padding: 20px;"
)
},
),
h.p(
"Explore our amazing content", attributes={"style": "font-size: 20px; color: #555;"}
),
),
h.main(
h.h2("Featured Articles", attributes={"style": "color: #444; text-align: center;"}),
h.article(
h.h3("Article 1", attributes={"style": "color: #0072d6;"}),
h.p("This is the first article content", attributes={"style": "color: #666;"}),
),
h.article(
h.h3("Article 2", attributes={"style": "color: #00a86b;"}),
h.p("This is the second article content", attributes={"style": "color: #666;"}),
),
),
h.footer(
h.p(
"© 2023 Our Website",
attributes={
"style": (
"text-align: center;"
" background-color: #333;"
" color: #fff;"
" padding: 10px;"
" flex-shrink: 0;"
" background-color: #333;"
" position: absolute;"
" left: 0;"
" bottom: 0;"
" width: 100%;"
" overflow: hidden;"
)
},
),
),
),
attributes={
"style": "background-color: #f2f2f2; font-family: Arial, sans-serif;",
},
)
with open("landing_page.html", "w") as f:
f.write(landing_page)
Result page
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
htmlight-0.1.2.tar.gz
(14.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
htmlight-0.1.2-py3-none-any.whl
(14.8 kB
view details)
File details
Details for the file htmlight-0.1.2.tar.gz.
File metadata
- Download URL: htmlight-0.1.2.tar.gz
- Upload date:
- Size: 14.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a835e2e9862aa902b402be1d43f150a4152d076ca739b39b476f8cc1ddf7068
|
|
| MD5 |
0d34809cf62b7e00cf50fa00884ba14e
|
|
| BLAKE2b-256 |
e7f43fe20960ca0a6ba8fa1475cac76963fa32b5535563e8a517e702d40b82f3
|
File details
Details for the file htmlight-0.1.2-py3-none-any.whl.
File metadata
- Download URL: htmlight-0.1.2-py3-none-any.whl
- Upload date:
- Size: 14.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a4da6eeb62b7695fb0051061dd7a48de55df14048559fc8f97eaebc74202cec
|
|
| MD5 |
d6ae385ce21e36ee1d7cd62f080bca9d
|
|
| BLAKE2b-256 |
2a21fd8e1bc084b00f265b07675ce208a9fb9cadf3b8235e72b0c80e2acba599
|