Files
StreamLens/streamlens.py

18 lines
454 B
Python
Raw Normal View History

2025-07-25 15:52:16 -04:00
#!/usr/bin/env python3
"""
2025-07-25 21:45:07 -04:00
StreamLens - Ethernet Traffic Analyzer with Chapter 10 Protocol Support
2025-07-25 15:52:16 -04:00
2025-07-25 21:45:07 -04:00
A comprehensive network analysis tool specializing in Chapter 10 telemetry data
with advanced statistical analysis, signal visualization, and GUI support.
2025-07-25 15:52:16 -04:00
"""
import sys
import os
# Add the analyzer package to the path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from analyzer.main import main
if __name__ == "__main__":
main()