staticdash 2025.34__tar.gz → 2025.35__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. {staticdash-2025.34 → staticdash-2025.35}/PKG-INFO +8 -1
  2. {staticdash-2025.34 → staticdash-2025.35}/README.md +7 -0
  3. {staticdash-2025.34 → staticdash-2025.35}/pyproject.toml +1 -1
  4. {staticdash-2025.34 → staticdash-2025.35}/staticdash.egg-info/PKG-INFO +8 -1
  5. {staticdash-2025.34 → staticdash-2025.35}/setup.cfg +0 -0
  6. {staticdash-2025.34 → staticdash-2025.35}/setup.py +0 -0
  7. {staticdash-2025.34 → staticdash-2025.35}/staticdash/__init__.py +0 -0
  8. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/css/style.css +0 -0
  9. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/js/script.js +0 -0
  10. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/vendor/mathjax/tex-mml-chtml.js +0 -0
  11. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/vendor/plotly/plotly.min.js +0 -0
  12. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/vendor/prism/components/prism-bash.min.js +0 -0
  13. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/vendor/prism/components/prism-c.min.js +0 -0
  14. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/vendor/prism/components/prism-javascript.min.js +0 -0
  15. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/vendor/prism/components/prism-json.min.js +0 -0
  16. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/vendor/prism/components/prism-markup.min.js +0 -0
  17. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/vendor/prism/components/prism-python.min.js +0 -0
  18. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/vendor/prism/components/prism-sql.min.js +0 -0
  19. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/vendor/prism/prism-tomorrow.min.css +0 -0
  20. {staticdash-2025.34 → staticdash-2025.35}/staticdash/assets/vendor/prism/prism.min.js +0 -0
  21. {staticdash-2025.34 → staticdash-2025.35}/staticdash/dashboard.py +0 -0
  22. {staticdash-2025.34 → staticdash-2025.35}/staticdash.egg-info/SOURCES.txt +0 -0
  23. {staticdash-2025.34 → staticdash-2025.35}/staticdash.egg-info/dependency_links.txt +0 -0
  24. {staticdash-2025.34 → staticdash-2025.35}/staticdash.egg-info/requires.txt +0 -0
  25. {staticdash-2025.34 → staticdash-2025.35}/staticdash.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: staticdash
3
- Version: 2025.34
3
+ Version: 2025.35
4
4
  Summary: A lightweight static HTML dashboard generator with Plotly and pandas support.
5
5
  Author-email: Brian Day <brian.day1@gmail.com>
6
6
  License: CC0-1.0
@@ -57,6 +57,13 @@ pip install staticdash
57
57
 
58
58
  [View the latest demo dashboard](https://staticdash.github.io/staticdash/)
59
59
 
60
+ ## Examples
61
+
62
+ This repository includes two example dashboards that demonstrate staticdash capabilities:
63
+
64
+ - **Tutorial Dashboard:** [View tutorial_output/index.html](https://staticdash.github.io/staticdash/tutorial_output/index.html) - A comprehensive tutorial showing all staticdash features
65
+ - **Directory Example:** [View directory_out/index.html](https://staticdash.github.io/staticdash/directory_out/index.html) - Demonstrates the Directory class for aggregating multiple dashboards
66
+
60
67
  ---
61
68
 
62
69
  For a full example, see [`demo.py`](./demo.py) in this repository.
@@ -40,6 +40,13 @@ pip install staticdash
40
40
 
41
41
  [View the latest demo dashboard](https://staticdash.github.io/staticdash/)
42
42
 
43
+ ## Examples
44
+
45
+ This repository includes two example dashboards that demonstrate staticdash capabilities:
46
+
47
+ - **Tutorial Dashboard:** [View tutorial_output/index.html](https://staticdash.github.io/staticdash/tutorial_output/index.html) - A comprehensive tutorial showing all staticdash features
48
+ - **Directory Example:** [View directory_out/index.html](https://staticdash.github.io/staticdash/directory_out/index.html) - Demonstrates the Directory class for aggregating multiple dashboards
49
+
43
50
  ---
44
51
 
45
52
  For a full example, see [`demo.py`](./demo.py) in this repository.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "staticdash"
7
- version = "2025.34"
7
+ version = "2025.35"
8
8
  description = "A lightweight static HTML dashboard generator with Plotly and pandas support."
9
9
  authors = [
10
10
  { name = "Brian Day", email = "brian.day1@gmail.com" }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: staticdash
3
- Version: 2025.34
3
+ Version: 2025.35
4
4
  Summary: A lightweight static HTML dashboard generator with Plotly and pandas support.
5
5
  Author-email: Brian Day <brian.day1@gmail.com>
6
6
  License: CC0-1.0
@@ -57,6 +57,13 @@ pip install staticdash
57
57
 
58
58
  [View the latest demo dashboard](https://staticdash.github.io/staticdash/)
59
59
 
60
+ ## Examples
61
+
62
+ This repository includes two example dashboards that demonstrate staticdash capabilities:
63
+
64
+ - **Tutorial Dashboard:** [View tutorial_output/index.html](https://staticdash.github.io/staticdash/tutorial_output/index.html) - A comprehensive tutorial showing all staticdash features
65
+ - **Directory Example:** [View directory_out/index.html](https://staticdash.github.io/staticdash/directory_out/index.html) - Demonstrates the Directory class for aggregating multiple dashboards
66
+
60
67
  ---
61
68
 
62
69
  For a full example, see [`demo.py`](./demo.py) in this repository.
File without changes
File without changes