A lightweight static HTML dashboard generator with Plotly and pandas support.
Project description
staticdash
staticdash is a lightweight Python module for creating static, multi-page HTML dashboards. It supports Plotly plots, tables, and text content, with a fixed sidebar for navigation.
Installation
Clone the repository and install it in editable mode:
git clone https://github.com/briday1/staticdash.git
cd staticdash
pip install .
Usage
Create a Python script like this:
from staticdash.dashboard import Dashboard, Page
import plotly.express as px
import pandas as pd
import numpy as np
# Create sample data
df = pd.DataFrame({
"Category": ["A", "B", "C", "D"],
"Value": [10, 20, 30, 40]
})
df2 = pd.DataFrame({
"Time": pd.date_range("2024-01-01", periods=10, freq="D"),
"Signal": np.random.randn(10).cumsum()
})
fig1 = px.bar(df, x="Category", y="Value", title="Bar Chart Example")
fig2 = px.line(df2, x="Time", y="Signal", title="Signal over Time")
# Build dashboard
dashboard = Dashboard(title="StaticDash Demo")
# Page 1: Overview
page1 = Page("overview", "Overview")
page1.add("Welcome to the StaticDash demo. Below is a bar chart and a table.")
page1.add(fig1)
page1.add(df)
# Page 2: Timeseries
page2 = Page("timeseries", "Timeseries")
page2.add("Here is a random time series with cumulative noise.")
page2.add(fig2)
page2.add(df2)
# Page 3: Summary
page3 = Page("summary", "Summary")
page3.add("Summary and notes can be added here.")
page3.add("StaticDash is a lightweight static dashboard generator.")
# Page 4: Download
page4 = Page("download", "Download")
page4.add("Here is a button to download a file.")
page4.add_download('./test_file.txt', "Download File")
page4.add_download('./test_file2.txt', "Download Another File")
# Register pages
dashboard.add_page(page1)
dashboard.add_page(page2)
dashboard.add_page(page3)
dashboard.add_page(page4)
# Export
dashboard.publish(output_dir="output")
After running the script, open output/index.html in your browser.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file staticdash-0.2.1.tar.gz.
File metadata
- Download URL: staticdash-0.2.1.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e47a5924645183eb405f46cd00c8d195c9e5bf45696a4df8516f51529e5c103
|
|
| MD5 |
2d925627bc5eccb36889d408daaa4f50
|
|
| BLAKE2b-256 |
565e70207ec2ddca6dfec84ddd94da4deac20cfe6a171d76b312ae8bb733982b
|
File details
Details for the file staticdash-0.2.1-py3-none-any.whl.
File metadata
- Download URL: staticdash-0.2.1-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d92c3ef772ec215f31344cac2087155d3f34826e6db5547f4fbcf05ca6948c5
|
|
| MD5 |
e9acd584d23613525f7267e423b1590d
|
|
| BLAKE2b-256 |
094b7d00251e43bb2822669d3b9d813860fbe49110337d9bcc9b78402372a0df
|