flwr-nightly 1.21.0.dev20250806__py3-none-any.whl → 1.21.0.dev20250807__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.
@@ -12,11 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
  # ==============================================================================
15
- """Flower App Scheduler."""
16
-
17
-
18
- from .plugin import SchedulerPlugin
19
-
20
- __all__ = [
21
- "SchedulerPlugin",
22
- ]
15
+ """Flower SuperExec."""
@@ -12,11 +12,13 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
  # ==============================================================================
15
- """Flower ClientApp Scheduler."""
15
+ """Flower SuperExec plugins."""
16
16
 
17
17
 
18
- from .simple_clientapp_scheduler_plugin import SimpleClientAppSchedulerPlugin
18
+ from .clientapp_exec_plugin import ClientAppExecPlugin
19
+ from .exec_plugin import ExecPlugin
19
20
 
20
21
  __all__ = [
21
- "SimpleClientAppSchedulerPlugin",
22
+ "ClientAppExecPlugin",
23
+ "ExecPlugin",
22
24
  ]
@@ -12,7 +12,7 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
  # ==============================================================================
15
- """Simple Flower ClientApp Scheduler plugin."""
15
+ """Simple Flower SuperExec plugin for ClientApp."""
16
16
 
17
17
 
18
18
  import os
@@ -20,11 +20,11 @@ import subprocess
20
20
  from collections.abc import Sequence
21
21
  from typing import Optional
22
22
 
23
- from flwr.supercore.scheduler import SchedulerPlugin
23
+ from .exec_plugin import ExecPlugin
24
24
 
25
25
 
26
- class SimpleClientAppSchedulerPlugin(SchedulerPlugin):
27
- """Simple Flower ClientApp Scheduler plugin.
26
+ class ClientAppExecPlugin(ExecPlugin):
27
+ """Simple Flower SuperExec plugin for ClientApp.
28
28
 
29
29
  The plugin always selects the first candidate run ID.
30
30
  """
@@ -12,7 +12,7 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
  # ==============================================================================
15
- """Abstract base class SchedulerPlugin."""
15
+ """Abstract base class ExecPlugin."""
16
16
 
17
17
 
18
18
  from abc import ABC, abstractmethod
@@ -22,8 +22,8 @@ from typing import Callable, Optional
22
22
  from flwr.common.typing import Run
23
23
 
24
24
 
25
- class SchedulerPlugin(ABC):
26
- """Abstract base class for Scheduler plugins."""
25
+ class ExecPlugin(ABC):
26
+ """Abstract base class for SuperExec plugins."""
27
27
 
28
28
  def __init__(
29
29
  self,
@@ -59,7 +59,7 @@ class SchedulerPlugin(ABC):
59
59
 
60
60
  This method starts the application process using the given `token`.
61
61
  The `run_id` is used solely for bookkeeping purposes, allowing any
62
- scheduler implementation to associate this launch with a specific run.
62
+ plugin implementation to associate this launch with a specific run.
63
63
 
64
64
  Parameters
65
65
  ----------
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: flwr-nightly
3
- Version: 1.21.0.dev20250806
3
+ Version: 1.21.0.dev20250807
4
4
  Summary: Flower: A Friendly Federated AI Framework
5
5
  License: Apache-2.0
6
6
  Keywords: Artificial Intelligence,Federated AI,Federated Analytics,Federated Evaluation,Federated Learning,Flower,Machine Learning
@@ -346,8 +346,10 @@ flwr/supercore/object_store/in_memory_object_store.py,sha256=CGY43syxDGrUPcdOzRH
346
346
  flwr/supercore/object_store/object_store.py,sha256=J-rI3X7ET-F6dqOyM-UfHKCCQtPJ_EnYW62H_1txts0,5252
347
347
  flwr/supercore/object_store/object_store_factory.py,sha256=QVwE2ywi7vsj2iKfvWWnNw3N_I7Rz91NUt2RpcbJ7iM,1527
348
348
  flwr/supercore/object_store/utils.py,sha256=DcPbrb9PenloAPoQRiKiXX9DrDfpXcSyY0cZpgn4PeQ,1680
349
- flwr/supercore/scheduler/__init__.py,sha256=E4GviiNJoZKz1dOao8ZGRHExsiM23GtOrkpMrTHy3n8,787
350
- flwr/supercore/scheduler/plugin.py,sha256=kIv0JUrHP-ghrcGT-pbporL9A2mUz8PxASw6KgxCRv8,2460
349
+ flwr/supercore/superexec/__init__.py,sha256=XKX208hZ6a9gZ4KT9kMqfpCtp_8VGxekzKFfHSu2esQ,707
350
+ flwr/supercore/superexec/plugin/__init__.py,sha256=OH5WYxZssOUzOVya3na4yHH0bRwtYmnottUreJT9R20,868
351
+ flwr/supercore/superexec/plugin/clientapp_exec_plugin.py,sha256=qX7vcB2n4crlfTTHKNqV0jHBmk8DiCIRuGDwLGAhP7g,1975
352
+ flwr/supercore/superexec/plugin/exec_plugin.py,sha256=w3jmtxdv7ov_EdAgifKcm4q8nV39e2Xna4sNjqClwOM,2447
351
353
  flwr/supercore/utils.py,sha256=ebuHMbeA8eXisX0oMPqBK3hk7uVnIE_yiqWVz8YbkpQ,1324
352
354
  flwr/superexec/__init__.py,sha256=YFqER0IJc1XEWfsX6AxZ9LSRq0sawPYrNYki-brvTIc,715
353
355
  flwr/superexec/deployment.py,sha256=CEgWfkN_lH6Vci03RjwKLENw2z6kxNvUdVEErPbqYDY,830
@@ -375,13 +377,11 @@ flwr/supernode/nodestate/nodestate.py,sha256=jCOewZyctecMxsM0-_-pQwef9P3O5QjnKCg
375
377
  flwr/supernode/nodestate/nodestate_factory.py,sha256=UYTDCcwK_baHUmkzkJDxL0UEqvtTfOMlQRrROMCd0Xo,1430
376
378
  flwr/supernode/runtime/__init__.py,sha256=JQdqd2EMTn-ORMeTvewYYh52ls0YKP68jrps1qioxu4,718
377
379
  flwr/supernode/runtime/run_clientapp.py,sha256=efocWcTe2ufkhe4BzMGgxe0COq9aDyJ6HzXwQ8ZaIAU,10551
378
- flwr/supernode/scheduler/__init__.py,sha256=nQLi5ROVCMz8ii_WsZn4MAqKHXI40Eb3tq5-9zZbmpg,850
379
- flwr/supernode/scheduler/simple_clientapp_scheduler_plugin.py,sha256=nnNuKhelrAEGCnWZ3aAkqJrhPu7xlVQ-oO1Eih9shTU,2000
380
380
  flwr/supernode/servicer/__init__.py,sha256=lucTzre5WPK7G1YLCfaqg3rbFWdNSb7ZTt-ca8gxdEo,717
381
381
  flwr/supernode/servicer/clientappio/__init__.py,sha256=7Oy62Y_oijqF7Dxi6tpcUQyOpLc_QpIRZ83NvwmB0Yg,813
382
382
  flwr/supernode/servicer/clientappio/clientappio_servicer.py,sha256=Egp8V_Z3k9wWJUhXEXVWyf-g9iZ_lI6VcoKQTtG9uQg,10454
383
383
  flwr/supernode/start_client_internal.py,sha256=iqJR8WbCW-8RQIRNwARZYoxhnlaAo5KnluCOEfRoLWM,21020
384
- flwr_nightly-1.21.0.dev20250806.dist-info/METADATA,sha256=Y6qSCklbNFCeLm17NenNYbX8me-uZz3aY8GZ4BxDv7U,15966
385
- flwr_nightly-1.21.0.dev20250806.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
386
- flwr_nightly-1.21.0.dev20250806.dist-info/entry_points.txt,sha256=jNpDXGBGgs21RqUxelF_jwGaxtqFwm-MQyfz-ZqSjrA,367
387
- flwr_nightly-1.21.0.dev20250806.dist-info/RECORD,,
384
+ flwr_nightly-1.21.0.dev20250807.dist-info/METADATA,sha256=_2ScWM9obUF2NYThP8IqpB2AHIL84ChKeSWcS6ikVF4,15966
385
+ flwr_nightly-1.21.0.dev20250807.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
386
+ flwr_nightly-1.21.0.dev20250807.dist-info/entry_points.txt,sha256=jNpDXGBGgs21RqUxelF_jwGaxtqFwm-MQyfz-ZqSjrA,367
387
+ flwr_nightly-1.21.0.dev20250807.dist-info/RECORD,,