A simple wrapper library for making Dash apps easier to build
The idea is to make Dash easier to use for new developers, harder to make bugs with,
and include a few common patterns and integrations like matplotlib support and interact
from ipywidgets
from easy_dash import EasyDash
import dash_html_components as html
import dash_core_components as dcc
app = EasyDash(__name__)
app.layout = html.Div(
[
dcc.Input(id="input", value="initial value"),
html.Div(id="output1")
]
)
@app.auto_callback()
def update_output1(input):
return input
from easy_dash import EasyDash
import dash_html_components as html
import dash_core_components as dcc
app = EasyDash(__name__)
app.layout = html.Div(
[
dcc.Input(id="input", value="initial value"),
html.Div(id="output1")
]
)
@app.auto_callback()
def update_children_of_output1(value_of_input):
return value_of_input