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.
- tests_cli/test_node_cli.py +4 -21
- tests_cli/test_server_cli.py +33 -12
- vantage6/cli/__build__ +1 -1
- vantage6/cli/algostore/attach.py +6 -42
- vantage6/cli/algostore/list.py +1 -1
- vantage6/cli/algostore/start.py +2 -2
- vantage6/cli/algostore/stop.py +1 -1
- vantage6/cli/cli.py +4 -11
- vantage6/cli/common/utils.py +25 -3
- vantage6/cli/configuration_manager.py +1 -0
- vantage6/cli/context/algorithm_store.py +1 -1
- vantage6/cli/context/node.py +1 -1
- vantage6/cli/node/attach.py +5 -66
- vantage6/cli/node/common/__init__.py +1 -1
- vantage6/cli/node/start.py +2 -2
- vantage6/cli/server/attach.py +5 -55
- vantage6/cli/server/import_.py +4 -1
- vantage6/cli/server/list.py +2 -1
- vantage6/cli/server/shell.py +1 -1
- vantage6/cli/server/start.py +5 -2
- vantage6/cli/server/stop.py +2 -2
- vantage6/cli/server/version.py +2 -2
- vantage6/cli/template/algo_store_config.j2 +1 -1
- vantage6/cli/template/node_config.j2 +1 -0
- vantage6/cli/template/server_config.j2 +1 -1
- vantage6/cli/test/common/diagnostic_runner.py +2 -4
- vantage6/cli/test/integration_test.py +113 -113
- {vantage6-5.0.0a7.dist-info → vantage6-5.0.0a14.dist-info}/METADATA +4 -4
- {vantage6-5.0.0a7.dist-info → vantage6-5.0.0a14.dist-info}/RECORD +32 -37
- vantage6/cli/dev/create.py +0 -633
- vantage6/cli/dev/remove.py +0 -94
- vantage6/cli/dev/start.py +0 -123
- vantage6/cli/dev/stop.py +0 -47
- vantage6/cli/dev/utils.py +0 -24
- {vantage6-5.0.0a7.dist-info → vantage6-5.0.0a14.dist-info}/WHEEL +0 -0
- {vantage6-5.0.0a7.dist-info → vantage6-5.0.0a14.dist-info}/entry_points.txt +0 -0
- {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
|
-
|
|
17
|
-
)
|
|
18
|
-
@click.option(
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
)
|
|
25
|
-
@click.option(
|
|
26
|
-
|
|
27
|
-
)
|
|
28
|
-
@click.option(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
)
|
|
34
|
-
@click.option(
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
)
|
|
42
|
-
@click.option(
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
)
|
|
49
|
-
@click.pass_context
|
|
50
|
-
def cli_test_integration(
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
) -> list[dict]:
|
|
59
|
-
|
|
60
|
-
|
|
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
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
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
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
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
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
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
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
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
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
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
|
-
|
|
122
|
+
# return diagnose_results
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: vantage6
|
|
3
|
-
Version: 5.0.
|
|
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.
|
|
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.
|
|
20
|
-
Requires-Dist: vantage6-client==5.0.
|
|
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=
|
|
4
|
-
tests_cli/test_server_cli.py,sha256=
|
|
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=
|
|
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=
|
|
10
|
-
vantage6/cli/configuration_manager.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
22
|
-
vantage6/cli/algostore/stop.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
29
|
+
vantage6/cli/context/node.py,sha256=u9UYBgRxcVaAJQqMEuVHdY-OLfO6w7Nc8GOB2ftbT6k,7368
|
|
30
30
|
vantage6/cli/context/server.py,sha256=vBGJWNsJoVcIryX5OLiWnFklNRcjOVkhqm2U5tqW5b0,3946
|
|
31
|
-
vantage6/cli/
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
56
|
-
vantage6/cli/server/list.py,sha256=
|
|
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=
|
|
60
|
-
vantage6/cli/server/start.py,sha256=
|
|
61
|
-
vantage6/cli/server/stop.py,sha256=
|
|
62
|
-
vantage6/cli/server/version.py,sha256=
|
|
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=
|
|
65
|
-
vantage6/cli/template/node_config.j2,sha256
|
|
66
|
-
vantage6/cli/template/server_config.j2,sha256=
|
|
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=
|
|
70
|
-
vantage6/cli/test/common/diagnostic_runner.py,sha256=
|
|
71
|
-
vantage6-5.0.
|
|
72
|
-
vantage6-5.0.
|
|
73
|
-
vantage6-5.0.
|
|
74
|
-
vantage6-5.0.
|
|
75
|
-
vantage6-5.0.
|
|
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,,
|