Visualizer components for the Sayou Data Platform
Project description
sayou-visualizer
The Interactive Observability Engine for Sayou Fabric.
sayou-visualizer provides a transparent layer to monitor and visualize the execution flow of Sayou components. By attaching to any pipeline, it transforms invisible execution logs into intuitive, interactive HTML Knowledge Graphs.
It separates the logic of Observation (Tracer) from Presentation (Renderer), allowing you to debug complex pipelines and visualize data lineage without modifying your core logic.
💡 Core Philosophy
"Trace the Process, Render the Insight."
Observability should not be an afterthought. We decouple the responsibility into two roles:
-
Tracer (Recorder): The "Camera". It silently observes events (
on_start,on_finish) from the pipeline via the Callback system and builds an internal graph structure. -
Renderer (Painter): The "Canvas". It takes the recorded graph and generates human-readable artifacts (e.g., Interactive HTML, Static Images).
This separation enables a Non-intrusive Monitoring experience, where visualization is just a plug-and-play feature.
📦 Installation
pip install sayou-visualizer
⚡ Quick Start
The VisualizerPipeline acts as a facade, easily attaching to other pipelines to generate reports.
from sayou.connector.pipeline import ConnectorPipeline
from sayou.visualizer.pipeline import VisualizerPipeline
def main():
connector = ConnectorPipeline()
viz = VisualizerPipeline()
viz.attach_to(connector)
print("🚀 Running Pipeline...")
iterator = connector.run("http://example.com")
for packet in iterator:
print(f"Processed: {packet.task.uri}")
print("🎨 Generating Report...")
viz.report("examples/pipeline_flow.html")
if __name__ == "__main__":
main()
🔑 Key Concepts
Tracers
GraphTracer: Listens to pipeline events and constructs aNetworkXDirected Acyclic Graph (DAG) in real-time. It distinguishes between Components (Generator/Fetcher) and Data (Tasks).
Renderers
PyVisRenderer: Converts the internal graph into an interactive HTML file powered byVis.js. Features physics-based layout and modern dark UI.RichRenderer(Planned): Displays a tree-structure summary directly in the console using theRichlibrary.
🤝 Contributing
We welcome contributions for new Renderers (e.g., MatplotlibRenderer, StreamlitRenderer) or specialized Tracers for new components!
📜 License
Apache 2.0 License © 2025 Sayouzone
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 sayou_visualizer-0.0.10.tar.gz.
File metadata
- Download URL: sayou_visualizer-0.0.10.tar.gz
- Upload date:
- Size: 20.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed11ff748c2c230dc62f456a53abd1645eeb3f71080edb6d86d9dc650d2b748e
|
|
| MD5 |
1f1e8f99ec87e02a0a7dd57fae87fafc
|
|
| BLAKE2b-256 |
78a13750277cf2f3ddbd1e1956ed498988cc4de8073a554c9bef822d65a66794
|
File details
Details for the file sayou_visualizer-0.0.10-py3-none-any.whl.
File metadata
- Download URL: sayou_visualizer-0.0.10-py3-none-any.whl
- Upload date:
- Size: 21.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
266b1897511b328d65ef97614a32b1fb5856803f769998cd37fe0f6984d49796
|
|
| MD5 |
69c4076fe5c0d5f676bf8060d3962597
|
|
| BLAKE2b-256 |
d143953069b73d3525c8902aa93361ba87df5a9ae3692d7b1860dd160eac47af
|