0 purchases
py3html 1.0.2
py3html
A very simple tool to generate html with python code.
Project
Tabler
Author
Özcan Yarımdünya
Documentation
https://ozcanyarimdunya.github.io/py3html
Source code
https://github.com/ozcanyarimdunya/py3html
py3html is a library that you can generate html by using same tree-structure python code.
Installation
Only python3.9+ required, no extra dependencies.
pip install py3html
Usage
Basic usage
import py3html as ph
code = ph.p("Hello, World")
code.html
Output
<p>Hello, World</p>
You can add more elements with attributes.
import py3html as ph
code = ph.div(
ph.h1("Welcome", style="color: red"),
ph.a("Click here!", href="example.com"),
ph.p(
"Login ",
ph.small("to"),
" continue!",
),
class_="container"
)
code.html
Output
<div class="container">
<h1 style="color: red">Welcome</h1>
<a href="example.com">Click here!</a>
<p>Login <small>to</small> continue!</p>
</div>
Test
This project using pytest.
make test
Documentation
Live preview
make serve-docs
Building
build-docs
LICENSE
MIT License
Copyright (c) 2023 yarimdunya.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.