A conversion tool to turn html/bootstrap into Python code for use with Dash and Plotly.
Project description
convert-html-to-dash
A conversion tool to turn html/bootstrap into Python code for use with Dash and Plotly
I find the interactive mode most useful, but exiting the program from interactive mode is unreliable.
This conversion only does so much. There are plenty of things that aren't converted fully such as dropdowns. This just creates a base framework. There is no intention of pushing the conversion process further at this time.
pip install convert-html-to-dash
$ python -m convert-html-to-dash -h
usage: __main__.py [-h] [-f FIL] [-o OUTFILE] [-i] [-p PRIORITY_LIST]
Convert HTML into Python Code for Dash with bootstrap
optional arguments:
-h, --help show this help message and exit
-f FIL input file
-o OUTFILE output file
-i Interactive mode. (ctrl-c, ctrl-v, then add a terminating character. windows: ctrl-z, linux: ctrl-d.
-p PRIORITY_LIST priority list for replacing tags. :: Options: dcc = dash_core_components, dbc = dash_bootstrap_components, html = dash_html_components :: Exanple: -p dbc -p html -p dcc :: Default Order: dcc, dbc, html
python -m convert-html-to-dash -f infile.html -o outfile.py
dbc.Container(
className="container",
children=[
html.H1(children=["Some Test Information"]),
dbc.Row(
className="row",
children=[
dbc.Col(className="col", children=[]),
...
python -m convert-html-to-dash -f infile.html -o outfile.py -p html
html.Div(
className="container",
children=[
html.H1(children=["Some Test Information"]),
html.Div(
className="row",
children=[
html.Div(className="col", children=[]),
...
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 convert-html-to-dash-0.1.2.tar.gz.
File metadata
- Download URL: convert-html-to-dash-0.1.2.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed35f8e8897d1b1968376afec026925bd514dff91a39b89913992a480a270cfe
|
|
| MD5 |
4acb5cee0b5c3d022763e7cbdb08ff09
|
|
| BLAKE2b-256 |
6dee1012d3a1af920a2f681ff861f83d04466dbe4fda33eb0ed89ee9afbfa840
|
File details
Details for the file convert_html_to_dash-0.1.2-py2.py3-none-any.whl.
File metadata
- Download URL: convert_html_to_dash-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1dbd2c461f93a828a8ebff20dde60a6545723766aaeb1dbf4b07ae912f197f1d
|
|
| MD5 |
a0c3309e8a6a7554d20c6eefd49e201a
|
|
| BLAKE2b-256 |
cf80cfa813b6cf1b84ff1dfe8fd8212b710fa3b41dfc0d3b67b5288b2207bb25
|