Py.Cafe

banana0000/

hello-dash-web-app

Hello Dash! Web App

DocsPricing
  • assets/
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import dash
from dash import html


app = dash.Dash()

app.layout = html.Div([
    html.H1("Hello Dash!"),
    html.Button("Click me!", className="my-btn")
])

if __name__ == '__main__':
    app.run(debug=True)