vantage6 5.0.0a7__py3-none-any.whl → 5.0.0a14__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 vantage6 might be problematic. Click here for more details.

Files changed (37) hide show
  1. tests_cli/test_node_cli.py +4 -21
  2. tests_cli/test_server_cli.py +33 -12
  3. vantage6/cli/__build__ +1 -1
  4. vantage6/cli/algostore/attach.py +6 -42
  5. vantage6/cli/algostore/list.py +1 -1
  6. vantage6/cli/algostore/start.py +2 -2
  7. vantage6/cli/algostore/stop.py +1 -1
  8. vantage6/cli/cli.py +4 -11
  9. vantage6/cli/common/utils.py +25 -3
  10. vantage6/cli/configuration_manager.py +1 -0
  11. vantage6/cli/context/algorithm_store.py +1 -1
  12. vantage6/cli/context/node.py +1 -1
  13. vantage6/cli/node/attach.py +5 -66
  14. vantage6/cli/node/common/__init__.py +1 -1
  15. vantage6/cli/node/start.py +2 -2
  16. vantage6/cli/server/attach.py +5 -55
  17. vantage6/cli/server/import_.py +4 -1
  18. vantage6/cli/server/list.py +2 -1
  19. vantage6/cli/server/shell.py +1 -1
  20. vantage6/cli/server/start.py +5 -2
  21. vantage6/cli/server/stop.py +2 -2
  22. vantage6/cli/server/version.py +2 -2
  23. vantage6/cli/template/algo_store_config.j2 +1 -1
  24. vantage6/cli/template/node_config.j2 +1 -0
  25. vantage6/cli/template/server_config.j2 +1 -1
  26. vantage6/cli/test/common/diagnostic_runner.py +2 -4
  27. vantage6/cli/test/integration_test.py +113 -113
  28. {vantage6-5.0.0a7.dist-info → vantage6-5.0.0a14.dist-info}/METADATA +4 -4
  29. {vantage6-5.0.0a7.dist-info → vantage6-5.0.0a14.dist-info}/RECORD +32 -37
  30. vantage6/cli/dev/create.py +0 -633
  31. vantage6/cli/dev/remove.py +0 -94
  32. vantage6/cli/dev/start.py +0 -123
  33. vantage6/cli/dev/stop.py +0 -47
  34. vantage6/cli/dev/utils.py +0 -24
  35. {vantage6-5.0.0a7.dist-info → vantage6-5.0.0a14.dist-info}/WHEEL +0 -0
  36. {vantage6-5.0.0a7.dist-info → vantage6-5.0.0a14.dist-info}/entry_points.txt +0 -0
  37. {vantage6-5.0.0a7.dist-info → vantage6-5.0.0a14.dist-info}/top_level.txt +0 -0
@@ -1,122 +1,122 @@
1
- from pathlib import Path
2
- import click
1
+ # from pathlib import Path
2
+ # import click
3
3
 
4
- from vantage6.common.globals import Ports
5
- from vantage6.cli.utils import info
6
- from vantage6.cli.dev.create import create_demo_network
7
- from vantage6.cli.dev.start import start_demo_network
8
- from vantage6.cli.dev.stop import stop_demo_network
9
- from vantage6.cli.dev.remove import remove_demo_network
10
- from vantage6.cli.utils import prompt_config_name, check_config_name_allowed
11
- from vantage6.cli.test.feature_tester import cli_test_features
4
+ # from vantage6.common.globals import Ports
5
+ # from vantage6.cli.utils import info
6
+ # from vantage6.cli.dev.create import create_demo_network
7
+ # from vantage6.cli.dev.start import start_demo_network
8
+ # from vantage6.cli.dev.stop import stop_demo_network
9
+ # from vantage6.cli.dev.remove import remove_demo_network
10
+ # from vantage6.cli.utils import prompt_config_name, check_config_name_allowed
11
+ # from vantage6.cli.test.feature_tester import cli_test_features
12
12
 
13
13
 
14
- @click.command()
15
- @click.option(
16
- "-n", "--name", default=None, type=str, help="Name for your development setup"
17
- )
18
- @click.option(
19
- "--server-url",
20
- type=str,
21
- default="http://host.docker.internal",
22
- help="Server URL to point to. If you are using Docker Desktop, "
23
- "the default http://host.docker.internal should not be changed.",
24
- )
25
- @click.option(
26
- "-i", "--image", type=str, default=None, help="Server Docker image to use"
27
- )
28
- @click.option(
29
- "--keep",
30
- type=bool,
31
- default=False,
32
- help="Keep the dev network after finishing the test",
33
- )
34
- @click.option(
35
- "--extra-server-config",
36
- type=click.Path(exists=True),
37
- default=None,
38
- help="YAML File with additional server "
39
- "configuration. This will be appended to the server "
40
- "configuration file",
41
- )
42
- @click.option(
43
- "--extra-node-config",
44
- type=click.Path("rb"),
45
- default=None,
46
- help="YAML File with additional node configuration. This will be"
47
- " appended to each of the node configuration files",
48
- )
49
- @click.pass_context
50
- def cli_test_integration(
51
- click_ctx: click.Context,
52
- name: str,
53
- server_url: str,
54
- image: str,
55
- keep: bool = False,
56
- extra_server_config: Path = None,
57
- extra_node_config: Path = None,
58
- ) -> list[dict]:
59
- """
60
- Create dev network and run diagnostic checks on it.
14
+ # @click.command()
15
+ # @click.option(
16
+ # "-n", "--name", default=None, type=str, help="Name for your development setup"
17
+ # )
18
+ # @click.option(
19
+ # "--server-url",
20
+ # type=str,
21
+ # default="http://host.docker.internal",
22
+ # help="Server URL to point to. If you are using Docker Desktop, "
23
+ # "the default http://host.docker.internal should not be changed.",
24
+ # )
25
+ # @click.option(
26
+ # "-i", "--image", type=str, default=None, help="Server Docker image to use"
27
+ # )
28
+ # @click.option(
29
+ # "--keep",
30
+ # type=bool,
31
+ # default=False,
32
+ # help="Keep the dev network after finishing the test",
33
+ # )
34
+ # @click.option(
35
+ # "--extra-server-config",
36
+ # type=click.Path(exists=True),
37
+ # default=None,
38
+ # help="YAML File with additional server "
39
+ # "configuration. This will be appended to the server "
40
+ # "configuration file",
41
+ # )
42
+ # @click.option(
43
+ # "--extra-node-config",
44
+ # type=click.Path("rb"),
45
+ # default=None,
46
+ # help="YAML File with additional node configuration. This will be"
47
+ # " appended to each of the node configuration files",
48
+ # )
49
+ # @click.pass_context
50
+ # def cli_test_integration(
51
+ # click_ctx: click.Context,
52
+ # name: str,
53
+ # server_url: str,
54
+ # image: str,
55
+ # keep: bool = False,
56
+ # extra_server_config: Path = None,
57
+ # extra_node_config: Path = None,
58
+ # ) -> list[dict]:
59
+ # """
60
+ # Create dev network and run diagnostic checks on it.
61
61
 
62
- This is a full integration test of the vantage6 network. It will create
63
- a test server with some nodes using the `vdev` commands, and then run the
64
- v6-diagnostics algorithm to test all functionality.
65
- """
66
- # get name for the development setup - if not given - and check if it is
67
- # allowed
68
- name = prompt_config_name(name)
69
- check_config_name_allowed(name)
62
+ # This is a full integration test of the vantage6 network. It will create
63
+ # a test server with some nodes using the `vdev` commands, and then run the
64
+ # v6-diagnostics algorithm to test all functionality.
65
+ # """
66
+ # # get name for the development setup - if not given - and check if it is
67
+ # # allowed
68
+ # name = prompt_config_name(name)
69
+ # check_config_name_allowed(name)
70
70
 
71
- # create server & node configurations and create test resources (
72
- # collaborations, organizations, etc)
73
- click_ctx.invoke(
74
- create_demo_network,
75
- name=name,
76
- num_nodes=3,
77
- server_url=server_url,
78
- server_port=Ports.DEV_SERVER.value,
79
- image=image,
80
- extra_server_config=extra_server_config,
81
- extra_node_config=extra_node_config,
82
- )
71
+ # # create server & node configurations and create test resources (
72
+ # # collaborations, organizations, etc)
73
+ # click_ctx.invoke(
74
+ # create_demo_network,
75
+ # name=name,
76
+ # num_nodes=3,
77
+ # server_url=server_url,
78
+ # server_port=Ports.DEV_SERVER.value,
79
+ # image=image,
80
+ # extra_server_config=extra_server_config,
81
+ # extra_node_config=extra_node_config,
82
+ # )
83
83
 
84
- # start the server and nodes
85
- click_ctx.invoke(
86
- start_demo_network,
87
- name=name,
88
- server_image=image,
89
- node_image=image,
90
- )
84
+ # # start the server and nodes
85
+ # click_ctx.invoke(
86
+ # start_demo_network,
87
+ # name=name,
88
+ # server_image=image,
89
+ # node_image=image,
90
+ # )
91
91
 
92
- # run the diagnostic tests
93
- # TODO the username and password should be coordinated with the vdev
94
- # command - at present it spits out this username/password combination by
95
- # default but both should be defined in the same place
96
- # TODO VPN testing is always excluded - allow to include it with a flag
97
- # when vdev commands can handle extra config parameters
98
- diagnose_results = click_ctx.invoke(
99
- cli_test_features,
100
- host="http://localhost",
101
- port=Ports.DEV_SERVER.value,
102
- api_path="/api",
103
- username="dev_admin",
104
- password="password",
105
- collaboration=1,
106
- organizations=None,
107
- all_nodes=True,
108
- online_only=False,
109
- no_vpn=True,
110
- )
92
+ # # run the diagnostic tests
93
+ # # TODO the username and password should be coordinated with the vdev
94
+ # # command - at present it spits out this username/password combination by
95
+ # # default but both should be defined in the same place
96
+ # # TODO VPN testing is always excluded - allow to include it with a flag
97
+ # # when vdev commands can handle extra config parameters
98
+ # diagnose_results = click_ctx.invoke(
99
+ # cli_test_features,
100
+ # host="http://localhost",
101
+ # port=Ports.DEV_SERVER.value,
102
+ # api_path="/api",
103
+ # username="dev_admin",
104
+ # password="password",
105
+ # collaboration=1,
106
+ # organizations=None,
107
+ # all_nodes=True,
108
+ # online_only=False,
109
+ # no_vpn=True,
110
+ # )
111
111
 
112
- # clean up the test resources
113
- click_ctx.invoke(stop_demo_network, name=name)
114
- if not keep:
115
- click_ctx.invoke(remove_demo_network, name=name)
116
- else:
117
- info(
118
- f"Keeping the demo network {name}. You can start it with `v6 dev "
119
- "start-demo-network`"
120
- )
112
+ # # clean up the test resources
113
+ # click_ctx.invoke(stop_demo_network, name=name)
114
+ # if not keep:
115
+ # click_ctx.invoke(remove_demo_network, name=name)
116
+ # else:
117
+ # info(
118
+ # f"Keeping the demo network {name}. You can start it with `v6 dev "
119
+ # "start-demo-network`"
120
+ # )
121
121
 
122
- return diagnose_results
122
+ # return diagnose_results
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vantage6
3
- Version: 5.0.0a7
3
+ Version: 5.0.0a14
4
4
  Summary: vantage6 command line interface
5
5
  Home-page: https://github.com/vantage6/vantage6
6
6
  Requires-Python: >=3.10
@@ -10,14 +10,14 @@ Requires-Dist: colorama==0.4.6
10
10
  Requires-Dist: copier==9.2.0
11
11
  Requires-Dist: docker==7.1.0
12
12
  Requires-Dist: ipython==8.10.0
13
- Requires-Dist: jinja2==3.1.5
13
+ Requires-Dist: jinja2==3.1.6
14
14
  Requires-Dist: pandas>=1.5.3
15
15
  Requires-Dist: questionary==1.10.0
16
16
  Requires-Dist: rich==13.5.2
17
17
  Requires-Dist: schema==0.7.5
18
18
  Requires-Dist: sqlalchemy==2.0.37
19
- Requires-Dist: vantage6-common==5.0.0a7
20
- Requires-Dist: vantage6-client==5.0.0a7
19
+ Requires-Dist: vantage6-common==5.0.0a14
20
+ Requires-Dist: vantage6-client==5.0.0a14
21
21
  Provides-Extra: dev
22
22
  Requires-Dist: coverage==6.4.4; extra == "dev"
23
23
  Requires-Dist: black; extra == "dev"
@@ -1,39 +1,34 @@
1
1
  tests_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  tests_cli/test_example.py,sha256=0fw_v-lgZEacshWSDwLNyLMA1_xc48bKUGM3ll-n1L0,146
3
- tests_cli/test_node_cli.py,sha256=XAKRS1-SXdeBRz3ob25q467soCIB178pKVz8MJVZbCQ,17534
4
- tests_cli/test_server_cli.py,sha256=M0Vh4XZIxZPwPPFDY03pBP3yk98vmmW_2G91BcM0_Yg,5867
3
+ tests_cli/test_node_cli.py,sha256=ajFdG1sTa9H7PjqK2dhcp3k59HGsJyO6ZoRfxgIUHcA,16842
4
+ tests_cli/test_server_cli.py,sha256=Yv6k0mkqElrpPgFtro_OH2Bjixz7mDXioxhvXr9VsAQ,6550
5
5
  tests_cli/test_wizard.py,sha256=NIj59eiCBuVNJXwhofrWLmLIKAsD45gSOzqOFWLmWhY,4916
6
- vantage6/cli/__build__,sha256=eQJpm-Qsio5G-7tFAXJlF-hrIsVqGJ92JabaSQgbJFE,1
6
+ vantage6/cli/__build__,sha256=hSeokeIkE2lQ_zLKIStFvJP2n7uAHDsevtrFJ3X5nmE,2
7
7
  vantage6/cli/__init__.py,sha256=ZXbeQ_-g2-M4XYteWZkoO5lMFYhqjm5doQgGy1fq8i0,125
8
8
  vantage6/cli/_version.py,sha256=iDijqhgy5jzZ0LAyzW1LlXeeuMcHWMyg9D8xbXtV7Ck,696
9
- vantage6/cli/cli.py,sha256=NHpiPcljADaVzwGYrG4FWVMfbmDRguSZWBeGxcdQxDo,6184
10
- vantage6/cli/configuration_manager.py,sha256=cN4tQpQjLG5GaGrsjEP-5ed_LqvPApIkNkM1J6ai3n0,3588
9
+ vantage6/cli/cli.py,sha256=B0F328FSBBslwplMPk8lIlr0r-taKuCgb8v9DIdyE3Q,5699
10
+ vantage6/cli/configuration_manager.py,sha256=QuR8Lvgjfp36aLnMV3PdbjddVJHOCvOv2Vci1bYHDHY,3642
11
11
  vantage6/cli/configuration_wizard.py,sha256=ifqvrVqHkxoM0ZVUVIwlYXFByzAbuVlahNjmwFGLVRU,20874
12
12
  vantage6/cli/globals.py,sha256=8AWI55FBbumVQTuI1bJzKp5hiRWtiwsVgTTKqWgRBes,1616
13
13
  vantage6/cli/utils.py,sha256=Jfr6IeHMQDk_wU5X7rJ1dRY118dhVVX8PwzwMYMv9Vw,2481
14
14
  vantage6/cli/algorithm/create.py,sha256=kRT1BlBcb0fDaB2Q988WxtA6EyAZmOW5QoU2uhbwBIo,2075
15
15
  vantage6/cli/algorithm/update.py,sha256=WwAfTnq0kTOgePUsBzGoo1AJQqGMn82E9Bjk1wf61CQ,1338
16
- vantage6/cli/algostore/attach.py,sha256=LVMgomAbNlsbxTggl6HsX-loCT4ZRWgeh6OsbRY9qqM,1667
16
+ vantage6/cli/algostore/attach.py,sha256=0WzLnKigJAelPpL5EaWcnRuUyQzMSofrrZfEzwDIvSw,311
17
17
  vantage6/cli/algostore/files.py,sha256=r89VRixK_K-c44qseq58Aa2Dqf1wEf8yompQRN5AVu4,580
18
- vantage6/cli/algostore/list.py,sha256=owBrU52ANp8oE68Rk1Hhd6yNYqWX-7uREtmCok_wndg,417
18
+ vantage6/cli/algostore/list.py,sha256=WH-WkPbo-WtXe2I7XI_JCBB1rxZQuVo0jBqkFv63czo,423
19
19
  vantage6/cli/algostore/new.py,sha256=ekqZ7_qCUtWs0QU6coo34thfkksHbCAYAD8nr0SKgO4,2147
20
20
  vantage6/cli/algostore/remove.py,sha256=ieQLpo2ZpblpPxaeRXdB7IO0DzTtURnveYQltW7TTSw,1643
21
- vantage6/cli/algostore/start.py,sha256=lkijG7K5TymXpZqVLhrW-YPhBmex_8T6WSLSruj64PQ,3169
22
- vantage6/cli/algostore/stop.py,sha256=8g5DlISUXTf7abs4BTi2b2XOsuKWTwUGuCPIOMgSAeA,1835
21
+ vantage6/cli/algostore/start.py,sha256=MI1wSvRdORyOdgZZKkyxFZSHwxUj060HXAlm-elYh0M,3181
22
+ vantage6/cli/algostore/stop.py,sha256=79C-q27x_BdkrwZGLVDnKOsyMiHXeG9k_UsfcLrGEgw,1841
23
23
  vantage6/cli/common/decorator.py,sha256=7Iwlcc_ekgXJco4tNjEV79ul43Q28OrieiGkvDBeGeE,3625
24
24
  vantage6/cli/common/start.py,sha256=IazXW6hKzFTomGu19lvr5z-EOzyXOD1fKokCwiIA8zc,9253
25
- vantage6/cli/common/utils.py,sha256=Hm-8U2aolFbJ2ChZHUH20Nyofrd6T-YyOz1acRUuhUo,4596
25
+ vantage6/cli/common/utils.py,sha256=eYlR-n2r3j7rW-EPSUnJR98Df8ye551WOl8tW912p3A,5153
26
26
  vantage6/cli/context/__init__.py,sha256=e8rfY2tCyu6_SLQ-rbVzEHkDtmbnGCZRHFN_HH-2bnA,2683
27
- vantage6/cli/context/algorithm_store.py,sha256=NsmrgDCTJ10KqQ209Q1sq-hBhuU_4LRqfbj3SZ-ivnU,3938
27
+ vantage6/cli/context/algorithm_store.py,sha256=RimxNcoqfWeu2WQede6wsOu1rx-azzXIPVkCDqVJLWs,3944
28
28
  vantage6/cli/context/base_server.py,sha256=paKSzNrKWD-J6eakHAtGELk2cD05A8NqoCAuQfF7c2s,2972
29
- vantage6/cli/context/node.py,sha256=BIDSIwbNkoqgAg8CUMA7Q_cJjp8vNwqnr3daY8X4Juw,7362
29
+ vantage6/cli/context/node.py,sha256=u9UYBgRxcVaAJQqMEuVHdY-OLfO6w7Nc8GOB2ftbT6k,7368
30
30
  vantage6/cli/context/server.py,sha256=vBGJWNsJoVcIryX5OLiWnFklNRcjOVkhqm2U5tqW5b0,3946
31
- vantage6/cli/dev/create.py,sha256=2-vqK1GpL-fFJEiZ4Anp0ZUAI94dHKWBbU6-wbyZWbo,19194
32
- vantage6/cli/dev/remove.py,sha256=1ZX5L3bqTsRUt8PkXUvH7tgSLR32viZ5Ve_Q1k-sQ5M,3055
33
- vantage6/cli/dev/start.py,sha256=fUMoPAEpmXoDAJidAmjIziaHZX1yqEErcrTKEXqPik8,4471
34
- vantage6/cli/dev/stop.py,sha256=gPy87r8T3nqe7RFJjlYE9Bns8N3RiPPcdzNIFCoqGRY,1430
35
- vantage6/cli/dev/utils.py,sha256=DOTwPVXKZWhJfto9FG7EFgMhMaFJHXuhLDSlBCUCR1o,888
36
- vantage6/cli/node/attach.py,sha256=6VADWJb4NTXu-TK_XR8It8J7OJ8f_xE2P8cpSd3vAzQ,2326
31
+ vantage6/cli/node/attach.py,sha256=cmouPrkbIbg21_wlAe-L-ecmrKVxiDkzGmEtRaCnKQY,276
37
32
  vantage6/cli/node/clean.py,sha256=uCty2GNuwoTybs1nIOygQLxtbleQ-rnnS6_4ieWVmCw,1199
38
33
  vantage6/cli/node/create_private_key.py,sha256=yciL1DtACxrBeEGxeaDi0NefDTvegG6s4rr5jA9J5TY,5207
39
34
  vantage6/cli/node/files.py,sha256=V7bJeR8weX0Llpp6y9wQoNrRsvlotEE6e70aTJp9j6M,1331
@@ -42,34 +37,34 @@ vantage6/cli/node/new.py,sha256=wuv8mdL4sLV91TJMIksU8dx2LlcUFrA1oORyiICruMw,2039
42
37
  vantage6/cli/node/remove.py,sha256=Al1XALUwciOU6zIRQB2D9EggUdvtU23laOZTWyYKKvc,3552
43
38
  vantage6/cli/node/restart.py,sha256=bWx0n4tN8TWOy_o8lJkA7AR-H1UIbfAiPp93I5wXg1Y,3709
44
39
  vantage6/cli/node/set_api_key.py,sha256=2kB8wveTy9_N8kX4huVhJhY86Ppd2BI8v-d7MRXQAdA,1877
45
- vantage6/cli/node/start.py,sha256=LsHoIKprsfyoDAbSwxCCux3W5zZHsaEiOKz1dZ9-ynE,12395
40
+ vantage6/cli/node/start.py,sha256=mV4vDBBtFcxva4MJdg5ymsstefDM4bV4pmhSsVX1o4k,12407
46
41
  vantage6/cli/node/stop.py,sha256=Hf5z2r6ttbW-DeU0cdHNXIJcgL-eIVRv8i7zZLo4foY,4159
47
42
  vantage6/cli/node/version.py,sha256=X921xyIvIPYObPac2Si5msZ2tay5ySidnPWmGj1ilZw,1959
48
- vantage6/cli/node/common/__init__.py,sha256=Jq3cI0Y1cybM_khCmdl1xwY1H6FLNJSHuu1J85DFg7Q,3461
43
+ vantage6/cli/node/common/__init__.py,sha256=ziGS3skkX6Kf4uvFqe22kdFbSck7mubNK5a-KgDAxX8,3467
49
44
  vantage6/cli/rabbitmq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
45
  vantage6/cli/rabbitmq/definitions.py,sha256=CcS9jG7ZGB6LjzHQqZ2FliDurPItUvNSjHrOYptORZg,637
51
46
  vantage6/cli/rabbitmq/queue_manager.py,sha256=KGDGHy4NBN8O9xhjzfI7mh65i9lOQIqQwrOFqvGFdHI,7545
52
47
  vantage6/cli/rabbitmq/rabbitmq.config,sha256=LYAQAEoXaF472XeJDYXc9JfWSETIzPRIR2W-JB2i7fU,136
53
- vantage6/cli/server/attach.py,sha256=AVwL1DprOFNzYrmuE_OVUGAiQNW4x923bDML-ZzhR3s,2125
48
+ vantage6/cli/server/attach.py,sha256=q1E40nGCBEFUF1p94sZoU-Ud3OXAUy4-FJqcP7Gqa7U,322
54
49
  vantage6/cli/server/files.py,sha256=LJhFyYHcEnCgFhVAM-lX6_EnfhMJ7YPdN21kVIpmwkc,507
55
- vantage6/cli/server/import_.py,sha256=mp6DgHzmRXd_M_507QPJOp0IiAtbXJY4V0IZxdkY0Lg,4516
56
- vantage6/cli/server/list.py,sha256=62ocNRtOAwbx9bgviva4Nd7_3rA7XmFDA55SPyNWZ1o,403
50
+ vantage6/cli/server/import_.py,sha256=pW1WlVc7eKoLhprxkREz9g8RfXxkEylB2467PsRV8eI,4557
51
+ vantage6/cli/server/list.py,sha256=_kVBe7TrtUfT2ZLWPkVvKj4xx5AvS17e99Bwp0ajc_E,410
57
52
  vantage6/cli/server/new.py,sha256=JnUMMD0UUSCOdO0K7v19l5HOV7vnMd9D38WUoEJ2F00,2094
58
53
  vantage6/cli/server/remove.py,sha256=6tfKfVa5dYnZAKQYo_VlGZTuiugi7sh2F3U2cZ7mCmQ,1627
59
- vantage6/cli/server/shell.py,sha256=9b_koFmBQRQYIK57usm75hZAaIF4msicLTu55dYHlzM,1583
60
- vantage6/cli/server/start.py,sha256=sHTK7tCwLvFJbNKac5FB1IYhb8oTUrA9rM3nKjIplHw,7740
61
- vantage6/cli/server/stop.py,sha256=tUreB1ogc9SwKMrmejfvErtwt9d5M_qOON2s9UZmLvE,4135
62
- vantage6/cli/server/version.py,sha256=AUYp0CJBnYF8tD3HXqE7kM0RycXipjOYEDkraswUlaA,1306
54
+ vantage6/cli/server/shell.py,sha256=7cSdBOwvloWyCz3RXHaFZUnxgNRV4gZUDmIFecV8Hks,1589
55
+ vantage6/cli/server/start.py,sha256=mPfsfkihJWf8bObNoln4YuBwOCVx3EstXtcNft8Pigo,7787
56
+ vantage6/cli/server/stop.py,sha256=DY3r9VsUk_r3cqIm1iL-U-kstLVb9pZsiGDSZyAMrKA,4147
57
+ vantage6/cli/server/version.py,sha256=aXAztHEky_F2jPbfPdHPfsAY7rdTurl0_3S6bL94_QQ,1318
63
58
  vantage6/cli/server/common/__init__.py,sha256=htv0mFYa4GhIHdzA2xqUUgKhHcMh09UQERlIjIgrwOM,2062
64
- vantage6/cli/template/algo_store_config.j2,sha256=QBGakqMOvUTcOIdAqoR4X6E8eApQ65ggAnQmaUViAV0,554
65
- vantage6/cli/template/node_config.j2,sha256=TPeCbfYEblwWonZkyBqzXluaoN-w0MpthwMTN8lTTW8,805
66
- vantage6/cli/template/server_config.j2,sha256=LKPa-ocK7h8qXgzrEYVHjxovaGX0CRQ0uPXImdAcpz0,804
59
+ vantage6/cli/template/algo_store_config.j2,sha256=XR-ly-47p6egH8lVh4lZZDh3YSV4kFnkZprdsfSkS2Y,552
60
+ vantage6/cli/template/node_config.j2,sha256=-4i3efdtDbEzzfj5BrJ02m3ETFBb8Tc1gMsmTga7Xx0,842
61
+ vantage6/cli/template/server_config.j2,sha256=3gEPY8YlqUMAQEgfR7a1HTU8WaCRhVzTS-IwPhsU1Gg,802
67
62
  vantage6/cli/template/server_import_config.j2,sha256=9WT2XeG9-ADoYLb4ahXhof3i9Fcvg0oqwNPyFwLJpvc,1827
68
63
  vantage6/cli/test/feature_tester.py,sha256=M8hvebupPwYjcBZoUB8GB3qb8G1-d3ipNzRMc_3-Z8E,2761
69
- vantage6/cli/test/integration_test.py,sha256=yQVG72XKDNH_eOPTsf3pb65FCBwJzMxn5VNfUGemJBM,3808
70
- vantage6/cli/test/common/diagnostic_runner.py,sha256=x_4ikihgoSTKI914pqlgVziBSg5LpV6MheO6O_GBCeA,6657
71
- vantage6-5.0.0a7.dist-info/METADATA,sha256=vkWcDph3hL3JhbVo4vwCFmYM2n_9qYO1cK-iq3QgYuI,10884
72
- vantage6-5.0.0a7.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
73
- vantage6-5.0.0a7.dist-info/entry_points.txt,sha256=YFBvwjxoeAGxYyPC-YevEgOBBYRGaXkS6jiOGGCLNy0,157
74
- vantage6-5.0.0a7.dist-info/top_level.txt,sha256=CYDIBS8jEfFq5YCs_Fuit54K9-3wdosZppTrsymIoUk,19
75
- vantage6-5.0.0a7.dist-info/RECORD,,
64
+ vantage6/cli/test/integration_test.py,sha256=MctR_t-WEyxzFpMdc6ByTcX1BQglZiT5-CIOQXTBBWo,4034
65
+ vantage6/cli/test/common/diagnostic_runner.py,sha256=F8vEaCD6HeKWDcQGVzRkPYxdvEk9owqfciOVdN3bHbw,6607
66
+ vantage6-5.0.0a14.dist-info/METADATA,sha256=BLiDC4CBIPQ6g-RhL7xdGynazoYg13_xdO2xI5XRpGg,10887
67
+ vantage6-5.0.0a14.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
68
+ vantage6-5.0.0a14.dist-info/entry_points.txt,sha256=YFBvwjxoeAGxYyPC-YevEgOBBYRGaXkS6jiOGGCLNy0,157
69
+ vantage6-5.0.0a14.dist-info/top_level.txt,sha256=CYDIBS8jEfFq5YCs_Fuit54K9-3wdosZppTrsymIoUk,19
70
+ vantage6-5.0.0a14.dist-info/RECORD,,