Files
airstream/pyshark_poc/__init__.py
2025-08-03 20:20:55 -04:00

20 lines
473 B
Python

"""
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'
]