flwr-nightly 1.10.0.dev20240614__py3-none-any.whl → 1.10.0.dev20240616__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.
Potentially problematic release.
This version of flwr-nightly might be problematic. Click here for more details.
- flwr/cli/run/run.py +1 -1
- flwr/client/supernode/app.py +1 -1
- flwr/proto/fab_pb2.py +30 -0
- flwr/proto/fab_pb2.pyi +56 -0
- flwr/proto/fab_pb2_grpc.py +4 -0
- flwr/proto/fab_pb2_grpc.pyi +4 -0
- {flwr_nightly-1.10.0.dev20240614.dist-info → flwr_nightly-1.10.0.dev20240616.dist-info}/METADATA +1 -1
- {flwr_nightly-1.10.0.dev20240614.dist-info → flwr_nightly-1.10.0.dev20240616.dist-info}/RECORD +11 -7
- {flwr_nightly-1.10.0.dev20240614.dist-info → flwr_nightly-1.10.0.dev20240616.dist-info}/LICENSE +0 -0
- {flwr_nightly-1.10.0.dev20240614.dist-info → flwr_nightly-1.10.0.dev20240616.dist-info}/WHEEL +0 -0
- {flwr_nightly-1.10.0.dev20240614.dist-info → flwr_nightly-1.10.0.dev20240616.dist-info}/entry_points.txt +0 -0
flwr/cli/run/run.py
CHANGED
|
@@ -41,7 +41,7 @@ class Engine(str, Enum):
|
|
|
41
41
|
def run(
|
|
42
42
|
engine: Annotated[
|
|
43
43
|
Optional[Engine],
|
|
44
|
-
typer.Option(case_sensitive=False, help="The
|
|
44
|
+
typer.Option(case_sensitive=False, help="The execution engine to run the app"),
|
|
45
45
|
] = None,
|
|
46
46
|
use_superexec: Annotated[
|
|
47
47
|
bool,
|
flwr/client/supernode/app.py
CHANGED
|
@@ -56,7 +56,7 @@ def run_supernode() -> None:
|
|
|
56
56
|
authentication_keys = _try_setup_client_authentication(args)
|
|
57
57
|
|
|
58
58
|
_start_client_internal(
|
|
59
|
-
server_address=args.
|
|
59
|
+
server_address=args.superlink,
|
|
60
60
|
load_client_app_fn=load_fn,
|
|
61
61
|
transport="rest" if args.rest else "grpc-rere",
|
|
62
62
|
root_certificates=root_certificates,
|
flwr/proto/fab_pb2.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: flwr/proto/fab.proto
|
|
4
|
+
# Protobuf Python Version: 4.25.0
|
|
5
|
+
"""Generated protocol buffer code."""
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
from google.protobuf.internal import builder as _builder
|
|
10
|
+
# @@protoc_insertion_point(imports)
|
|
11
|
+
|
|
12
|
+
_sym_db = _symbol_database.Default()
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x14\x66lwr/proto/fab.proto\x12\nflwr.proto\"$\n\x03\x46\x61\x62\x12\x0c\n\x04hash\x18\x01 \x01(\t\x12\x0f\n\x07\x63ontent\x18\x02 \x01(\x0c\"\x1d\n\rGetFabRequest\x12\x0c\n\x04hash\x18\x01 \x01(\t\".\n\x0eGetFabResponse\x12\x1c\n\x03\x66\x61\x62\x18\x01 \x01(\x0b\x32\x0f.flwr.proto.Fabb\x06proto3')
|
|
18
|
+
|
|
19
|
+
_globals = globals()
|
|
20
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
21
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'flwr.proto.fab_pb2', _globals)
|
|
22
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
23
|
+
DESCRIPTOR._options = None
|
|
24
|
+
_globals['_FAB']._serialized_start=36
|
|
25
|
+
_globals['_FAB']._serialized_end=72
|
|
26
|
+
_globals['_GETFABREQUEST']._serialized_start=74
|
|
27
|
+
_globals['_GETFABREQUEST']._serialized_end=103
|
|
28
|
+
_globals['_GETFABRESPONSE']._serialized_start=105
|
|
29
|
+
_globals['_GETFABRESPONSE']._serialized_end=151
|
|
30
|
+
# @@protoc_insertion_point(module_scope)
|
flwr/proto/fab_pb2.pyi
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
import builtins
|
|
6
|
+
import google.protobuf.descriptor
|
|
7
|
+
import google.protobuf.message
|
|
8
|
+
import typing
|
|
9
|
+
import typing_extensions
|
|
10
|
+
|
|
11
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
|
12
|
+
|
|
13
|
+
class Fab(google.protobuf.message.Message):
|
|
14
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
15
|
+
HASH_FIELD_NUMBER: builtins.int
|
|
16
|
+
CONTENT_FIELD_NUMBER: builtins.int
|
|
17
|
+
hash: typing.Text
|
|
18
|
+
"""This field is the hash of the data field. It is used to identify the data.
|
|
19
|
+
The hash is calculated using the SHA-256 algorithm and is represented as a
|
|
20
|
+
hex string (sha256hex).
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
content: builtins.bytes
|
|
24
|
+
"""This field contains the fab file contents a one bytes blob."""
|
|
25
|
+
|
|
26
|
+
def __init__(self,
|
|
27
|
+
*,
|
|
28
|
+
hash: typing.Text = ...,
|
|
29
|
+
content: builtins.bytes = ...,
|
|
30
|
+
) -> None: ...
|
|
31
|
+
def ClearField(self, field_name: typing_extensions.Literal["content",b"content","hash",b"hash"]) -> None: ...
|
|
32
|
+
global___Fab = Fab
|
|
33
|
+
|
|
34
|
+
class GetFabRequest(google.protobuf.message.Message):
|
|
35
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
36
|
+
HASH_FIELD_NUMBER: builtins.int
|
|
37
|
+
hash: typing.Text
|
|
38
|
+
def __init__(self,
|
|
39
|
+
*,
|
|
40
|
+
hash: typing.Text = ...,
|
|
41
|
+
) -> None: ...
|
|
42
|
+
def ClearField(self, field_name: typing_extensions.Literal["hash",b"hash"]) -> None: ...
|
|
43
|
+
global___GetFabRequest = GetFabRequest
|
|
44
|
+
|
|
45
|
+
class GetFabResponse(google.protobuf.message.Message):
|
|
46
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
47
|
+
FAB_FIELD_NUMBER: builtins.int
|
|
48
|
+
@property
|
|
49
|
+
def fab(self) -> global___Fab: ...
|
|
50
|
+
def __init__(self,
|
|
51
|
+
*,
|
|
52
|
+
fab: typing.Optional[global___Fab] = ...,
|
|
53
|
+
) -> None: ...
|
|
54
|
+
def HasField(self, field_name: typing_extensions.Literal["fab",b"fab"]) -> builtins.bool: ...
|
|
55
|
+
def ClearField(self, field_name: typing_extensions.Literal["fab",b"fab"]) -> None: ...
|
|
56
|
+
global___GetFabResponse = GetFabResponse
|
{flwr_nightly-1.10.0.dev20240614.dist-info → flwr_nightly-1.10.0.dev20240616.dist-info}/RECORD
RENAMED
|
@@ -40,7 +40,7 @@ flwr/cli/new/templates/app/pyproject.pytorch.toml.tpl,sha256=wxN6I8uvWZ4MErvTbQJ
|
|
|
40
40
|
flwr/cli/new/templates/app/pyproject.sklearn.toml.tpl,sha256=wFeJuhqnBPQtKCBvnE3ySBpxmbeNdxcsq2Eb_RmSDIg,655
|
|
41
41
|
flwr/cli/new/templates/app/pyproject.tensorflow.toml.tpl,sha256=zkxLTQRvujF76sIlzNNGPVU7Y9nVCwNBxAx82AOBaJY,654
|
|
42
42
|
flwr/cli/run/__init__.py,sha256=oCd6HmQDx-sqver1gecgx-uMA38BLTSiiKpl7RGNceg,789
|
|
43
|
-
flwr/cli/run/run.py,sha256=
|
|
43
|
+
flwr/cli/run/run.py,sha256=boAv5Ib9PdscieetxCR2MJ3MPjt5YRMjUZ8cR75P424,3842
|
|
44
44
|
flwr/cli/utils.py,sha256=l65Ul0YsSBPuypk0uorAtEDmLEYiUrzpCXi6zCg9mJ4,4506
|
|
45
45
|
flwr/client/__init__.py,sha256=tcgMyAW8brnmAIk4NmXkonVjYV3lafQJD4vfZ3OJ6kA,1279
|
|
46
46
|
flwr/client/app.py,sha256=GhL-eR_Y2H8e2XhUnq5AUGQWQya51b5iVr4I6RDW7Hc,24189
|
|
@@ -70,7 +70,7 @@ flwr/client/numpy_client.py,sha256=u76GWAdHmJM88Agm2EgLQSvO8Jnk225mJTk-_TmPjFE,1
|
|
|
70
70
|
flwr/client/rest_client/__init__.py,sha256=ThwOnkMdzxo_UuyTI47Q7y9oSpuTgNT2OuFvJCfuDiw,735
|
|
71
71
|
flwr/client/rest_client/connection.py,sha256=GvDPX2BdPwhBQGH6LQE50AzUxQvC7bisWK1pk_OR7eE,11567
|
|
72
72
|
flwr/client/supernode/__init__.py,sha256=SUhWOzcgXRNXk1V9UgB5-FaWukqqrOEajVUHEcPkwyQ,865
|
|
73
|
-
flwr/client/supernode/app.py,sha256=
|
|
73
|
+
flwr/client/supernode/app.py,sha256=KPVVUHQBgMtde-TVoJtXQ2qDqlE3shY1OCiDFbVYTTg,14704
|
|
74
74
|
flwr/client/typing.py,sha256=c9EvjlEjasxn1Wqx6bGl6Xg6vM1gMFfmXht-E2i5J-k,1006
|
|
75
75
|
flwr/common/__init__.py,sha256=dHOptgKxna78CEQLD5Yu0QIsoSgpIIw5AhIUZCHDWAU,3721
|
|
76
76
|
flwr/common/address.py,sha256=iTAN9jtmIGMrWFnx9XZQl45ZEtQJVZZLYPRBSNVARGI,1882
|
|
@@ -122,6 +122,10 @@ flwr/proto/exec_pb2.py,sha256=fwuyyK6WEwx-RngMZm6z5dqDeYcMKKxBBhwh9MJfvMA,1450
|
|
|
122
122
|
flwr/proto/exec_pb2.pyi,sha256=IMUD1GlhK0mizORQ-lkiU-JbpAefmo9GLpDNfAib2GM,1068
|
|
123
123
|
flwr/proto/exec_pb2_grpc.py,sha256=7yyi_J1Sri8LXzj5_MjhI7_hoxUMcjIAQcaE-Ghnvco,2480
|
|
124
124
|
flwr/proto/exec_pb2_grpc.pyi,sha256=w721aoQ_ggktlIbR973bFRhwbIlEhfNMjOH4hnwgQE0,743
|
|
125
|
+
flwr/proto/fab_pb2.py,sha256=k1L3z4L3pJGRIUmgt609xUe-UAtSKFwT0C7wXnb12IY,1427
|
|
126
|
+
flwr/proto/fab_pb2.pyi,sha256=G2eHjgIAeVAf4TchXg3XPdeUk-h5-OMJnAv7CLyxdGs,1930
|
|
127
|
+
flwr/proto/fab_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
128
|
+
flwr/proto/fab_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
|
|
125
129
|
flwr/proto/fleet_pb2.py,sha256=sASthuSb5R0v1NH2g6vRDC4BeJUFPAso8bjcihAflo0,4543
|
|
126
130
|
flwr/proto/fleet_pb2.pyi,sha256=45kQ9YINv3VG0nxWSjCN4SppdepjKW8rRBlxKxz7ud4,7571
|
|
127
131
|
flwr/proto/fleet_pb2_grpc.py,sha256=4eP1jkEVuckzSxo16yNaOBrHPzxHqQfj2MaNtPql4Wk,10655
|
|
@@ -244,8 +248,8 @@ flwr/superexec/app.py,sha256=8qW72a4LZRGMfNxsY6PPv-ClsKrk_ai9l0GrLI4vvTw,6078
|
|
|
244
248
|
flwr/superexec/exec_grpc.py,sha256=u-rztpOleqSGqgvNE-ZLw1HchNsBHU1-eB3m52GZ0pQ,1852
|
|
245
249
|
flwr/superexec/exec_servicer.py,sha256=KosYdHNwShkGdmJH1bxnZpJbMt5rz5N4I4c-ouimF6Y,1698
|
|
246
250
|
flwr/superexec/executor.py,sha256=GouXCY2LiZ-ffsOoZ_z-fh4JwbzMmhTl-gwpWFgGWTY,1688
|
|
247
|
-
flwr_nightly-1.10.0.
|
|
248
|
-
flwr_nightly-1.10.0.
|
|
249
|
-
flwr_nightly-1.10.0.
|
|
250
|
-
flwr_nightly-1.10.0.
|
|
251
|
-
flwr_nightly-1.10.0.
|
|
251
|
+
flwr_nightly-1.10.0.dev20240616.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
252
|
+
flwr_nightly-1.10.0.dev20240616.dist-info/METADATA,sha256=po_948pH8WZNl0Si9fUYyWNCYSvYuE7XdxM7nkYrzk4,15518
|
|
253
|
+
flwr_nightly-1.10.0.dev20240616.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
254
|
+
flwr_nightly-1.10.0.dev20240616.dist-info/entry_points.txt,sha256=7qBQcA-bDGDxnJmLd9FYqglFQubjCNqyg9M8a-lukps,336
|
|
255
|
+
flwr_nightly-1.10.0.dev20240616.dist-info/RECORD,,
|
{flwr_nightly-1.10.0.dev20240614.dist-info → flwr_nightly-1.10.0.dev20240616.dist-info}/LICENSE
RENAMED
|
File without changes
|
{flwr_nightly-1.10.0.dev20240614.dist-info → flwr_nightly-1.10.0.dev20240616.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|