https://github.com/lucafaggianelli/dash-templates
Pre-made application layouts for Plotly Dash
https://github.com/lucafaggianelli/dash-templates
bootstrap dash dash-bootstrap-components dash-mantine-components mantine plotly plotly-dash python templates
Last synced: 27 days ago
JSON representation
Pre-made application layouts for Plotly Dash
- Host: GitHub
- URL: https://github.com/lucafaggianelli/dash-templates
- Owner: lucafaggianelli
- Created: 2023-11-20T17:36:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-20T23:13:14.000Z (over 2 years ago)
- Last Synced: 2025-03-04T09:42:08.575Z (over 1 year ago)
- Topics: bootstrap, dash, dash-bootstrap-components, dash-mantine-components, mantine, plotly, plotly-dash, python, templates
- Language: Python
- Homepage:
- Size: 96.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dash Templates
Pre-made templates for Plotly Dash apps: get started with 2 lines of code!

## Get started
```sh
pip install git+https://github.com/lucafaggianelli/dash-templates
```
> For the moment only a Mantine template is available:
more templates to come!
```py
from dash import Dash
from dash_templates.mantine import get_layout
app = Dash(
__name__,
title="My app",
use_pages=True,
)
app.layout = get_layout()
if __name__ == "__main__":
app.run(debug=True)
```