--- id: dash version: "4.4.1" license: MIT license_treatment: permissive maintenance: active --- # dash — A Python framework for building reactive web-apps. Developed by Plotly. License: permissive · Maintenance: active · Downloads: 11.4M/mo ## What it is and what it does Dash is a Python web framework built on Flask, Plotly.js, and React that lets you build interactive data applications by declaring UI components and connecting them to Python callbacks. You write pure Python—no JavaScript required—to tie dropdowns, sliders, graphs, and other elements to your analytical logic, and Dash handles the reactive updates when users interact with the app. The framework is designed for data science and ML workflows and runs on your local machine or can be deployed to a server. It handles both simple single-page dashboards and complex multi-input applications with cross-filtering. The package depends on Flask for the web server, Plotly for charting, Pydantic for validation, and several async utilities; it requires Python 3.9 or later. Use it for: - Build interactive financial dashboards that update graphs when users select date ranges or filter criteria from dropdowns. - Create ML model exploration interfaces where users adjust parameters and see real-time predictions or classification results. - Develop data exploration tools that let analysts cross-filter multiple visualizations from a single dataset. - Deploy internal business intelligence reports with styled layouts that look like PDF reports but are fully interactive. - Build scientific research dashboards that visualize experimental data with interactive controls for parameter tuning. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Dash is a Python framework for building interactive web applications with reactive UI elements like dropdowns and graphs tied directly to analytical code, using Flask and Plotly for rendering. Yes. Dash is actively maintained, has no known vulnerabilities, installs with low friction, and is licensed permissively under MIT. It is well-suited for building interactive web applications in Python without requiring JavaScript expertise. Install it if you need to turn analytical Python code into interactive dashboards or data apps. ## Install pip install dash uv add dash poetry add dash ## Installing dash Before you install: Low install friction with a pure-Python wheel distribution. Actively maintained with a recent release and repository activity; last commit on 2026-08-13 signals ongoing development. License in practice: MIT license permits commercial and private use with minimal restrictions; you may use, modify, and distribute Dash-based applications freely provided you include the license notice. Quickstart: pip install dash import dash from dash import dcc, html, callback import plotly.express as px app = dash.Dash(__name__) app.layout = html.Div([ dcc.Dropdown(id='dropdown', options=[{'label': 'A', 'value': 'a'}]), dcc.Graph(id='graph') ]) @callback(dash.Output('graph', 'figure'), dash.Input('dropdown', 'value')) def update_graph(value): return px.bar(x=[1, 2, 3], y=[4, 5, 6]) if __name__ == '__main__': app.run_server(debug=True) Verify before relying: - Whether all 12 runtime dependencies are required for basic use or if some are optional. - Performance characteristics and scalability limits for production deployments without Dash Enterprise. - Exact number of supported chart types beyond the description's mention of map support. ## Package facts - License: MIT (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 11.4M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags python web app framework, interactive dashboards python, reactive web ui builder, plotly dash apps, data visualization web framework, python data science web apps, flask-based dashboard framework, web-framework, data-visualization, reactive-ui [View on SkillFed](https://skillfed.io/packages/dash) · [View on PyPI](https://pypi.org/project/dash/)