first working
This commit is contained in:
20
pyshark_poc/__init__.py
Normal file
20
pyshark_poc/__init__.py
Normal 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'
|
||||
]
|
||||
Reference in New Issue
Block a user