Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 17 days ago
JSON representation

Pre-made application layouts for Plotly Dash

Awesome Lists containing this project

README

        

# Dash Templates

Pre-made templates for Plotly Dash apps: get started with 2 lines of code!

![Screenshot](docs/assets/screenshot.png)

## 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)
```