No project description provided
Project description
MyFletifyHTML
MyFletifyHTML is a Python package for converting HTML content into Flet code. It allows you to embed HTML code in your Flet app
Installation
(Not avalaible for now,...)
pip install fletify
Alternative
Install via Github and use the example.py to test Fletify
pip install git+https://github.com/tct123/MyFletifyHTML.git
Usage
import flet as ft
from myfletify import FletifyHTML
# Example HTML content
html_content = "<p>This is a <b>paragraph</b> with <a href='#'>a link</a></p>"
# Create a FletifyHTML instance
fletify = FletifyHTML(html_content)
# Get the Flet code
flet_code = fletify.get_flet()
def main(page: ft.Page):
#Display the output, by adding it on the page
page.add(flet_code)
page.update()
ft.app(target=main)
OutPut:
FletifyHTML() can receive the HTML file containing the content to be displayed, FletifyHTML(html=<path-to-your-html-file>)
Features
For now, Fletify support the following HTML tags:
img, ul, ol, li, a, b, strong, i, em, u, mark, span, div, p, code, h1, h2, h3, h4, h5, h6, table, tr, th, td
Fletify doesn't support CSS style however, it supports inline style using the style attribute.
eg:
<img style="width: 200; height: 200; background-color:yellow; border-radius: 5; border: 3 solid #336699; margin:40" src="https://picsum.photos/200/200?10" alt="Example Image">
these are the supported style properties
color, background-color, font-family, font-size, text-align, text-decoration, display, justify-content, margin, padding, border-radius, border, width, height
Contributing
If you'd like to contribute to FletifyHTML, please open an issue or submit a pull request.
🚨 Give FletifyHTML a try and tell us what you think about it.
License
This project is licensed under the MIT License - see the LICENSE file for details.
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
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
File details
Details for the file myfletify-0.1.0.tar.gz.
File metadata
- Download URL: myfletify-0.1.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.13.0 Linux/6.11.10-300.fc41.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
801bc28dac1583c4b1eea6ef545ef27d136290bb11df6d1850bcf3747123efec
|
|
| MD5 |
6d79b412a737f7cd944589b6f88dd63b
|
|
| BLAKE2b-256 |
2c786a6c8172ec4b949d4f98342e2f3a5fe49074c767e521872863e7805fb827
|
File details
Details for the file myfletify-0.1.0-py3-none-any.whl.
File metadata
- Download URL: myfletify-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.13.0 Linux/6.11.10-300.fc41.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6582c637e6bc083caf654443f2d61703954122c90ae1b54b01f5f73979cced4
|
|
| MD5 |
5ec020985ed7709ce26599f2cdc47882
|
|
| BLAKE2b-256 |
12d4f0e6182dd902a3b3a247d687b8442c7fd3eeb8d6aae9e17e71964c4b0b17
|