openbench-privacy-preservin.../openbench_privacy_preservin.../__init__.py

15 lines
389 B
Python

"""OpenBench Privacy-Preserving Benchmarking (MVP)
This package provides a compact, offline-first core for capturing KPI data,
performing privacy-preserving aggregations, and computing simple derived metrics.
"""
from .core import KPIRecord, LocalStore, SecureAggregator, GrowthCalculator
__all__ = [
"KPIRecord",
"LocalStore",
"SecureAggregator",
"GrowthCalculator",
]