An intuitive, high performance HTML rendering framework
Project description
htmldoom
An intuitive, high performance HTML rendering framework
Usage
A basic tag
>>> from htmldoom import render, elements as e >>> >>> print(render( ... e.textarea("required", class_="input")("text") ... )) <textarea required class="input">text</textarea>
A fast dynamic elements rendering mechanism
Choose whichever syntax suits you:
Syntax 1
>>> from htmldoom import renders, elements as e >>> >>> @renders( ... e.p()("{x}"), ... e.p()("another {x}"), ... ) ... def render_paras(data: dict) -> dict: ... return {"x": data["x"]} >>> >>> render_paras({"x": "awesome paragraph"}) <p>awesome paragraph</p><p>another awesome paragraph</p>
Syntax 2
>>> from htmldoom import renders, elements as e >>> >>> render_paras = renders( ... e.p()("{x}"), ... e.p()("another {x}"), ... )(lambda data: {"x": data["x"]}) >>> >>> render_paras({"x": "awesome paragraph"}) <p>awesome paragraph</p><p>another awesome paragraph</p>
NOTE: This mechanism compiles the template when the file loads and reuse it.
renders( -- compile-time code -- )( -- runtime code -- )
The more execution you move from runtime to compile-time, the faster it gets.
If you properly use this mechanism and refractor your dynamic pages into smaller components, it might surpass the performance of traditional template rendering engines.
WARNING: It performs a "{rendered_elements}".format(**returned_data)
. So each `{` or `}` in the compile-time code needs to be escaped with `{{` or `}}`.
A functional style foreach loop with a switch case
>>> from htmldoom import elements as e >>> from htmldoom import functions as fn >>> >>> tuple(fn.foreach(["good", "bad", "evil"])( ... lambda x: fn.switch({ ... x == "good": lambda: e.span(style="color: green")(f"this is {x}"), ... x == "bad": lambda: e.span(style="color: yellow")(f"this is {x}"), ... x == "evil": lambda: e.span(style="color: red")(f"this is {x}"), ... fn.Case.DEFAULT: lambda: fn.Error.throw(ValueError(x)), ... }) ... )) (b'<span style="color: green">this is good</span>', b'<span style="color: yellow">this is bad</span>', b'<span style="color: red">this is evil</span>')
Q/A
What is the goal here?
The primary goal is to make writing dynamic HTML pages cleaner, easier, safer and intuitive in Python.
What about performance?
Although performance is not the primary goal here, it should not be a roadblock. htmldoom uses pure functions with hashable input parameters as elements. Hence, it makes effective use of caching internally. It also offers friendly a mechanism to pre-render the static parts of the page using the `@renders` decorator when it compiles to bytecode.
Also since it helps you (probably forces you) to refactor the webpage into multiple render functions, you are free to use whatever optimisation you prefer. Try putting an `@lru_cache` in a render function?
Is there any benchmark?
Plugins and ecosystem
- moodlmth: Convert raw HTML pages into python source code
- pyramid_htmldoom: htmldoom rendering library plugin for Pyramid
Contributing
Check out the contributing guidelines.
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
Built Distribution
File details
Details for the file htmldoom-0.6.5.tar.gz
.
File metadata
- Download URL: htmldoom-0.6.5.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4def7c452db2f73dda0946c35b4a6ba645e83f61a3d887a6859af9f533f92d4c |
|
MD5 | a3765bdbdbbf0520bec6dc5cbc252831 |
|
BLAKE2b-256 | d57d82c29eecd17a066c5793117dff611dce59d01600b475e9cbc78409cc36d5 |
File details
Details for the file htmldoom-0.6.5-py3-none-any.whl
.
File metadata
- Download URL: htmldoom-0.6.5-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0fbd47fc2824209d1ab251b4b7fd25bd34628da5bd786940e8855daed7900db1 |
|
MD5 | 73bc4d5a2204523a5fdd20c3b655005c |
|
BLAKE2b-256 | 87d49729d39b1287397cb42d26b9efd75447ec6bb8b89476280d67c6d9854b7e |