manta-node 0.5b0.dev9__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.
Files changed (42) hide show
  1. manta_node/__init__.py +5 -0
  2. manta_node/__main__.py +57 -0
  3. manta_node/cli/__init__.py +6 -0
  4. manta_node/cli/commands/__init__.py +21 -0
  5. manta_node/cli/commands/cluster.py +419 -0
  6. manta_node/cli/commands/config.py +490 -0
  7. manta_node/cli/commands/logs.py +168 -0
  8. manta_node/cli/commands/start.py +459 -0
  9. manta_node/cli/commands/status.py +204 -0
  10. manta_node/cli/commands/stop.py +253 -0
  11. manta_node/cli/config_manager.py +139 -0
  12. manta_node/cli/main.py +133 -0
  13. manta_node/cli/version.py +106 -0
  14. manta_node/domain/__init__.py +8 -0
  15. manta_node/domain/task_lifecycle.py +83 -0
  16. manta_node/infrastructure/__init__.py +13 -0
  17. manta_node/infrastructure/config/__init__.py +31 -0
  18. manta_node/infrastructure/config/node_config_manager.py +918 -0
  19. manta_node/infrastructure/container/__init__.py +9 -0
  20. manta_node/infrastructure/container/docker_adapter.py +253 -0
  21. manta_node/infrastructure/container/manager.py +536 -0
  22. manta_node/infrastructure/filesystem/__init__.py +7 -0
  23. manta_node/infrastructure/filesystem/dataset_manager.py +469 -0
  24. manta_node/infrastructure/grpc/__init__.py +11 -0
  25. manta_node/infrastructure/grpc/client.py +373 -0
  26. manta_node/infrastructure/grpc/local_servicer.py +151 -0
  27. manta_node/infrastructure/grpc/world_servicer.py +284 -0
  28. manta_node/infrastructure/metrics/__init__.py +10 -0
  29. manta_node/infrastructure/metrics/collector.py +94 -0
  30. manta_node/infrastructure/metrics/metrics_collector.py +351 -0
  31. manta_node/infrastructure/mqtt/__init__.py +7 -0
  32. manta_node/infrastructure/mqtt/command_handler.py +315 -0
  33. manta_node/node_orchestrator.py +462 -0
  34. manta_node/task_manager.py +519 -0
  35. manta_node/tasks.py +272 -0
  36. manta_node/utils.py +52 -0
  37. manta_node-0.5b0.dev9.dist-info/METADATA +799 -0
  38. manta_node-0.5b0.dev9.dist-info/RECORD +42 -0
  39. manta_node-0.5b0.dev9.dist-info/WHEEL +5 -0
  40. manta_node-0.5b0.dev9.dist-info/entry_points.txt +2 -0
  41. manta_node-0.5b0.dev9.dist-info/licenses/LICENSE +683 -0
  42. manta_node-0.5b0.dev9.dist-info/top_level.txt +1 -0
@@ -0,0 +1,42 @@
1
+ manta_node/__init__.py,sha256=bgGWXH3yQVhNf0v1ZGUBAy5Y51fqb0Y-EaLnocbcino,153
2
+ manta_node/__main__.py,sha256=0VzbY1KfezaARZDuCBc7Th1GO_-BnKTK8eDEXhgP5J4,1731
3
+ manta_node/node_orchestrator.py,sha256=0VMBsZSMQiIe9L-Bd7Jn4avNpNyDCMa1kyPSTgRiOes,17336
4
+ manta_node/task_manager.py,sha256=LFFE83JreNa9YejFa8JTRFkZgVOjFREqdYfQREYD2S4,17406
5
+ manta_node/tasks.py,sha256=W__XjU17AX8VqOtgy8HRBmxWtVufTkFvri8s8Y3R394,6721
6
+ manta_node/utils.py,sha256=gkYRB7fylk1jy1sm7nKU7o8eadGxn0AX4IjCHT6Wzuw,1179
7
+ manta_node/cli/__init__.py,sha256=arzO3mXDJ-E2yeeytbZfN7mCswwxdQ43_QjyeL2E5yE,134
8
+ manta_node/cli/config_manager.py,sha256=FJ-yztHIoYRjvmbC0Cvh4ukFyZP0opvarFkSjat8kxs,4443
9
+ manta_node/cli/main.py,sha256=BzdkPh6Bk9ul2dKh49mzY3OH4PlrqfagVETvNshaBAQ,4153
10
+ manta_node/cli/version.py,sha256=QzzuK3uGrYb4gt3RO01vpuWk21I2R-7FoO7XANamIvk,3057
11
+ manta_node/cli/commands/__init__.py,sha256=GKLOURXZqec5B3H3EiwX41xDISGg6cO_kCueoyZvt0Q,505
12
+ manta_node/cli/commands/cluster.py,sha256=MwO9imczDqfzojX54jaQKL4Iy3D_4J3rntL5_T26na4,14255
13
+ manta_node/cli/commands/config.py,sha256=Hpnuj8QA-FjdVS0iT8n5zgiGjZ0LgYP9_8f64lEoMyM,16588
14
+ manta_node/cli/commands/logs.py,sha256=i0QtWLcGshxZpPbkCxKqF8icX70T0MM_15FIuOQZ5Zk,5297
15
+ manta_node/cli/commands/start.py,sha256=49kvB6p01nBTp0yqLX36RiXeEccGYTcl9YMcB2sI_9o,16233
16
+ manta_node/cli/commands/status.py,sha256=9YYUaelmQJWqh6FbVuy6y2y1lvjoPIkA2d18JU0PHls,6430
17
+ manta_node/cli/commands/stop.py,sha256=mcO8AMtaPkpNFEy6lVIe4fvNFJSEkheFdxkj1ySiYaI,7719
18
+ manta_node/domain/__init__.py,sha256=uyJXDf0QgfGCsXLMggqKCB5QV9oneYJ4iM-REaJGXDM,217
19
+ manta_node/domain/task_lifecycle.py,sha256=RRRXYvOraID0mg5TrInbQLeyUGzSeU6HIGUvvo6rbTw,2856
20
+ manta_node/infrastructure/__init__.py,sha256=yM60jKhdaD18BOsLb-0aR9D2XxGvrTnV92oOT7Kor2w,297
21
+ manta_node/infrastructure/config/__init__.py,sha256=jbRzb1c0RohpF83WOwtDpe19dBXVfbZYF3SoOaESh6k,617
22
+ manta_node/infrastructure/config/node_config_manager.py,sha256=iAzMWPjs2AWTxwDLAdCK8GpMMw_14QOzX11hvQMnSvY,30414
23
+ manta_node/infrastructure/container/__init__.py,sha256=9I9g5y2ncEAa7PhEsSfL2nFOltfFr-GsBGgn8B2vIUY,199
24
+ manta_node/infrastructure/container/docker_adapter.py,sha256=Sxprl0RpjT8epxTzYUJxSyHko3IBcus2ihneq4kRH7Q,6980
25
+ manta_node/infrastructure/container/manager.py,sha256=qpHwBOsDdiv10i5Qlx9PUn5UHr1oy8ejRGalTCi6AOQ,17375
26
+ manta_node/infrastructure/filesystem/__init__.py,sha256=nf6Fakp3wuFKjSAm_oihI6WE_yyUY6Uelr7A1GwSvXs,145
27
+ manta_node/infrastructure/filesystem/dataset_manager.py,sha256=lCcsLdDHM-rRfhndpD9fQ56rPKYcuel-p3qx8nUxffE,14894
28
+ manta_node/infrastructure/grpc/__init__.py,sha256=w2lG41CUq4yFrmfjgtvJ0HWZfirlynPvdTYbqJZBEx4,254
29
+ manta_node/infrastructure/grpc/client.py,sha256=jNrlJRX3VIBfmCfid2s_6aCOYx_7XWRGvln_yHEvIE4,9996
30
+ manta_node/infrastructure/grpc/local_servicer.py,sha256=azSMoyJWoMVuFwCfDnX0XD_KEmJstBUy1pDqnb4gwOs,4153
31
+ manta_node/infrastructure/grpc/world_servicer.py,sha256=pk5P5cXXSmpUxer3A-cNsBU7AP5uC353HTu2g4hSqjU,8212
32
+ manta_node/infrastructure/metrics/__init__.py,sha256=ODGAj9s63F5jba2c3dQRMfNK6I4WvMdcJUS_xApUN5Y,272
33
+ manta_node/infrastructure/metrics/collector.py,sha256=nhFPAbjA04ye3UaGN95_zdpf9hLs2lrMXwOwKlFKYsI,3070
34
+ manta_node/infrastructure/metrics/metrics_collector.py,sha256=jhEocAPWS6xgbNvcBBiEB9cAN_9hEGssZJXoysQzWOk,10518
35
+ manta_node/infrastructure/mqtt/__init__.py,sha256=riXo1sXgO4YV6DHCmWRqK61BAmuGLdHiVdQFunAJadA,140
36
+ manta_node/infrastructure/mqtt/command_handler.py,sha256=bDH8k3Vkbbb7q3P68VamhMbtLJ4vSSivqZP3IfMBqIQ,11833
37
+ manta_node-0.5b0.dev0+g22d425c.dist-info/licenses/LICENSE,sha256=P5HojupjKoAusNtHqWOvO-YFolwLFWQ7Uq0XVKK9nFQ,35291
38
+ manta_node-0.5b0.dev0+g22d425c.dist-info/METADATA,sha256=GekSHQANkdCiw8Owg-iqHR-renwRINjhd607U3zEVtc,44783
39
+ manta_node-0.5b0.dev0+g22d425c.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
40
+ manta_node-0.5b0.dev0+g22d425c.dist-info/entry_points.txt,sha256=C_zcw6mdmztNxVUZGLZ83UH5TwcSuqb2C-rB4e2CQoc,56
41
+ manta_node-0.5b0.dev0+g22d425c.dist-info/top_level.txt,sha256=nbT5J5WETuXM9UPoQckl29uUOq8wMYdRb9QDx5kAFeo,11
42
+ manta_node-0.5b0.dev0+g22d425c.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ manta_node = manta_node.__main__:main