vizzbreeze 1.0.0__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.
@@ -0,0 +1,55 @@
1
+ Metadata-Version: 2.4
2
+ Name: vizzbreeze
3
+ Version: 1.0.0
4
+ Summary: A high-performance streamlined transactional web-dashboard for advanced graph analytics and risk audit.
5
+ Author-email: Your Name <your.email@example.com>
6
+ Classifier: License :: OSI Approved :: MIT License
7
+ Classifier: Operating System :: OS Independent
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Topic :: Scientific/Engineering :: Visualization
10
+ Requires-Python: >=3.9
11
+ Requires-Dist: numpy>=1.25.0
12
+ Requires-Dist: openpyxl>=3.1.0
13
+ Requires-Dist: pandas>=2.1.0
14
+ Requires-Dist: plotly>=5.18.0
15
+ Requires-Dist: streamlit>=1.35.0
16
+ Description-Content-Type: text/markdown
17
+
18
+ # VizzBreeze 🌪️
19
+
20
+ A lightweight, high-performance transactional web-dashboard designed for advanced data flow analytics, multi-stage routing visualization, and statistical risk audit. Built natively on top of Streamlit, Pandas, and Plotly.
21
+
22
+ ## Key Features
23
+
24
+ - **Flat Transaction Processing Engine**: Optimized for fast processing of un-aggregated logs (e.g., Client ➔ Fund ➔ Asset).
25
+ - **Global Session Synchronization**: Seamlessly locks metric column selections, typography sizes, and alignments across all workspace views.
26
+ - **Auto-Scroll Suppression**: Enhanced layout architecture prevents viewport jumps during widget updates and data updates.
27
+ - **Advanced Graph Matrix Analytics**: Includes high-fidelity stacked charts, multi-dimensional Parcats layouts, Density Matrices, and automated IQR risk audit profiling tools.
28
+
29
+ ## Quick Start
30
+
31
+ You can install and launch the interactive analytical control room globally using just two commands in your terminal:
32
+
33
+ ```bash
34
+ pip install vizzbreeze
35
+ vizzbreeze-run
36
+ ```
37
+
38
+ ## Core Analytical Tabs
39
+
40
+ 1. **Parallel Categories Flow**: Explore multi-stage multi-dimensional category paths with thin, light axis labels and custom high-contrast hover tooltips.
41
+ 2. **Route Conversion Pipeline**: Track progressive conversion drops along specific workflow layers.
42
+ 3. **Structural Composition Breakdown**: Classic stacked column bar charts configured with responsive axis titles that update on the fly based on active filters.
43
+ 4. **Bento Components & Density Matrix**: High-density dashboards to scan cluster intersections instantly.
44
+ 5. **Statistical Risk Audit**: Automated statistical anomaly profiling that detects process outliers without freezing the browser engine.
45
+
46
+ ## Requirements
47
+
48
+ - Python >= 3.9
49
+ - Streamlit >= 1.35.0
50
+ - Pandas >= 2.1.0
51
+ - Plotly >= 5.18.0
52
+
53
+ ## License
54
+
55
+ This project is licensed under the MIT License - see the LICENSE file for details.
@@ -0,0 +1,38 @@
1
+ # VizzBreeze 🌪️
2
+
3
+ A lightweight, high-performance transactional web-dashboard designed for advanced data flow analytics, multi-stage routing visualization, and statistical risk audit. Built natively on top of Streamlit, Pandas, and Plotly.
4
+
5
+ ## Key Features
6
+
7
+ - **Flat Transaction Processing Engine**: Optimized for fast processing of un-aggregated logs (e.g., Client ➔ Fund ➔ Asset).
8
+ - **Global Session Synchronization**: Seamlessly locks metric column selections, typography sizes, and alignments across all workspace views.
9
+ - **Auto-Scroll Suppression**: Enhanced layout architecture prevents viewport jumps during widget updates and data updates.
10
+ - **Advanced Graph Matrix Analytics**: Includes high-fidelity stacked charts, multi-dimensional Parcats layouts, Density Matrices, and automated IQR risk audit profiling tools.
11
+
12
+ ## Quick Start
13
+
14
+ You can install and launch the interactive analytical control room globally using just two commands in your terminal:
15
+
16
+ ```bash
17
+ pip install vizzbreeze
18
+ vizzbreeze-run
19
+ ```
20
+
21
+ ## Core Analytical Tabs
22
+
23
+ 1. **Parallel Categories Flow**: Explore multi-stage multi-dimensional category paths with thin, light axis labels and custom high-contrast hover tooltips.
24
+ 2. **Route Conversion Pipeline**: Track progressive conversion drops along specific workflow layers.
25
+ 3. **Structural Composition Breakdown**: Classic stacked column bar charts configured with responsive axis titles that update on the fly based on active filters.
26
+ 4. **Bento Components & Density Matrix**: High-density dashboards to scan cluster intersections instantly.
27
+ 5. **Statistical Risk Audit**: Automated statistical anomaly profiling that detects process outliers without freezing the browser engine.
28
+
29
+ ## Requirements
30
+
31
+ - Python >= 3.9
32
+ - Streamlit >= 1.35.0
33
+ - Pandas >= 2.1.0
34
+ - Plotly >= 5.18.0
35
+
36
+ ## License
37
+
38
+ This project is licensed under the MIT License - see the LICENSE file for details.
@@ -0,0 +1,35 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "vizzbreeze" # Unique package identifier registered on the PyPI index
7
+ version = "1.0.0"
8
+ authors = [
9
+ { name = "Your Name", email = "your.email@example.com" }
10
+ ]
11
+ description = "A high-performance streamlined transactional web-dashboard for advanced graph analytics and risk audit."
12
+ readme = "README.md"
13
+ requires-python = ">=3.9"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ "Topic :: Scientific/Engineering :: Visualization"
19
+ ]
20
+
21
+ # Core project dependencies. PyPI will automatically install these for the user upon pip execution!
22
+ dependencies = [
23
+ "streamlit>=1.35.0",
24
+ "pandas>=2.1.0",
25
+ "numpy>=1.25.0",
26
+ "plotly>=5.18.0",
27
+ "openpyxl>=3.1.0"
28
+ ]
29
+
30
+ # Core command script: Registers a global console shortcut for rapid terminal dashboard launching
31
+ [project.scripts]
32
+ vizzbreeze-run = "vizzbreeze.cli:main"
33
+
34
+ [tool.hatch.build.targets.wheel]
35
+ packages = ["src/vizzbreeze"]
File without changes