first working

This commit is contained in:
2025-08-03 20:20:55 -04:00
commit cde56494ec
52 changed files with 1893 additions and 0 deletions

20
pyshark_poc/__init__.py Normal file
View File

@@ -0,0 +1,20 @@
"""
PyShark-based proof of concept for Airstream packet analyzer.
This module provides an alternative implementation using PyShark
to leverage Wireshark's dissector capabilities.
"""
from .analyzer import PySharkAnalyzer
from .models import FlowKey
from .stats import MultiStats, BaseStats, OverviewStats, PTPStats, STATS_TYPES
__all__ = [
'PySharkAnalyzer',
'FlowKey',
'MultiStats',
'BaseStats',
'OverviewStats',
'PTPStats',
'STATS_TYPES'
]