Your First Dash App with Mito
A Quickstart guide to creating your first Dash app with the Mito Spreadsheet.
Create your first app
from dash import Dash, callback, Input, Output, html, dcc from mitosheet.mito_dash.v1 import Spreadsheet, mito_callback, activate_mitoapp = Dash(__name__) activate_mito(app)CSV_URL = 'https://raw.githubusercontent.com/plotly/datasets/master/tesla-stock-price.csv' app.layout = html.Div([ html.H1("Stock Analysis"), Spreadsheet(CSV_URL, id={'type': 'spreadsheet', 'id': 'sheet'}), html.Div(id='output') ]) if __name__ == '__main__': app.run_server(debug=True)python app.py
Showing the code generated by Mito
All the code together
Ready to build some more complex applications? Check out our app gallery:
Dash App GalleryLast updated
Was this helpful?