29 lines
695 B
Python
29 lines
695 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
|
|
from .contracts import DataContract, ContractRegistry
|
|
from .adapters.pos import POSAdapter
|
|
from .adapters.erp import ERPAdapter
|
|
|
|
__all__ = [
|
|
"KPIRecord",
|
|
"LocalStore",
|
|
"SecureAggregator",
|
|
"GrowthCalculator",
|
|
"DataContract",
|
|
"ContractRegistry",
|
|
"POSAdapter",
|
|
"ERPAdapter",
|
|
]
|
|
|
|
__all__ = [
|
|
"KPIRecord",
|
|
"LocalStore",
|
|
"SecureAggregator",
|
|
"GrowthCalculator",
|
|
]
|