2025-08-27 17:52:50 +01:00
|
|
|
"""Statistical sampling profiler for Python.
|
|
|
|
|
|
|
|
|
|
This module provides low-overhead profiling by periodically sampling the
|
|
|
|
|
call stack rather than tracing every function call.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from .collector import Collector
|
|
|
|
|
from .pstats_collector import PstatsCollector
|
|
|
|
|
from .stack_collector import CollapsedStackCollector
|
2025-10-01 21:18:54 +01:00
|
|
|
from .gecko_collector import GeckoCollector
|
2025-09-14 23:47:14 +01:00
|
|
|
from .string_table import StringTable
|
2025-08-27 17:52:50 +01:00
|
|
|
|
2025-10-01 21:18:54 +01:00
|
|
|
__all__ = ("Collector", "PstatsCollector", "CollapsedStackCollector", "GeckoCollector", "StringTable")
|