python-fedci 0.1.5__py3-none-any.whl → 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
fedci/__init__.py CHANGED
@@ -1,4 +1,37 @@
1
- from .server import Server, ProxyServer
2
- from .client import Client, ProxyClient
3
- from .utils import VariableType
4
- from .env import *
1
+ from fedci.client import Client
2
+ from fedci.server import Server
3
+ from fedci.network import NetworkClient, connect_client, serve_client
4
+ from fedci.results import (
5
+ LRTResult,
6
+ SymmetricLRTResult,
7
+ TestResult,
8
+ RepeatedTestResult,
9
+ )
10
+ from fedci.utils import (
11
+ VariableType,
12
+ ModelType,
13
+ HeterogenietyType,
14
+ ModelConfiguration,
15
+ GAMConfiguration,
16
+ )
17
+
18
+ __all__ = [
19
+ # Core
20
+ "Client",
21
+ "Server",
22
+ # Networking
23
+ "NetworkClient",
24
+ "connect_client",
25
+ "serve_client",
26
+ # Results
27
+ "LRTResult",
28
+ "SymmetricLRTResult",
29
+ "TestResult",
30
+ "RepeatedTestResult",
31
+ # Configuration
32
+ "VariableType",
33
+ "ModelType",
34
+ "HeterogenietyType",
35
+ "ModelConfiguration",
36
+ "GAMConfiguration",
37
+ ]