18 lines
454 B
Python
18 lines
454 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
StreamLens - Ethernet Traffic Analyzer with Chapter 10 Protocol Support
|
|
|
|
A comprehensive network analysis tool specializing in Chapter 10 telemetry data
|
|
with advanced statistical analysis, signal visualization, and GUI support.
|
|
"""
|
|
|
|
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() |