Tools to handle the CRUD of .html files as objects.
Project description
HTML 2 Object
Tools to handle the CRUD of .html files as objects.
Table of Contents
Usage
This project provides a way to manipulate HTML files and update them dynamically. Here's how you can use it:
First, import the necessary classes from this project:
from html_element import HtmlElement
read your html file and create an HtmlElement()
html = open(<path>, "r").read("bin/gui/index.html")
document = HtmlElement(html)
now you can create scripts
update_script = HtmlElement(name="script").add_child(
"setInterval(() => reload(), 1500);"
)
document.add_child(update_script)
create a div
p = HtmlElement(name="p", id="textID").add_chil("Text")
div = HtmlElement(name="div").add_child(p)
document.add_child(div)
or even find an element
text_element = document.find_element_by_id("textID")
strong = HtmlElement(name="strong").add_child("Strong text")
text_element.set_child([strong, "No strong text"])
save the html file running
open(path, "w").write(str(document)).close()
Installation
Instructions on how to install and set up your project. Include any dependencies that need to be installed.
- Clone the repository
- Navigate to the project directory:
cd html2object
- Create a virtual environment (optional but recommended):
python3 -m venv venv
- Activate the virtual environment:
- For Windows:
venv\Scripts\activate
- For macOS and Linux:
source venv/bin/activate
- Install the project dependencies:
pip install -r requirements.txt
That's it! Your project should now be installed and ready to use.
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
html2object-0.1.1.tar.gz
(3.5 kB
view hashes)
Built Distribution
Close
Hashes for html2object-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19ed5dc5ef9ca3ae5a00d9b9b853045186b6ba3fd9acb982f15eea647c0ea456 |
|
MD5 | d484966939ac71762d3d3a74d9529100 |
|
BLAKE2b-256 | 9da24be2b2851f567b71e4b85ca8aaa9d96ebb4db5efc12930373e5886fe93f0 |