vantage6 5.0.0a9__py3-none-any.whl → 5.0.0a15__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_server_cli.py +1 -1
- vantage6/cli/__build__ +1 -1
- vantage6/cli/algostore/list.py +1 -1
- vantage6/cli/algostore/start.py +2 -2
- vantage6/cli/algostore/stop.py +1 -1
- vantage6/cli/common/utils.py +10 -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/common/__init__.py +1 -1
- vantage6/cli/node/start.py +2 -2
- 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-5.0.0a9.dist-info → vantage6-5.0.0a15.dist-info}/METADATA +4 -4
- {vantage6-5.0.0a9.dist-info → vantage6-5.0.0a15.dist-info}/RECORD +25 -25
- {vantage6-5.0.0a9.dist-info → vantage6-5.0.0a15.dist-info}/WHEEL +0 -0
- {vantage6-5.0.0a9.dist-info → vantage6-5.0.0a15.dist-info}/entry_points.txt +0 -0
- {vantage6-5.0.0a9.dist-info → vantage6-5.0.0a15.dist-info}/top_level.txt +0 -0
tests_cli/test_server_cli.py
CHANGED
|
@@ -133,7 +133,7 @@ class ServerCLITest(unittest.TestCase):
|
|
|
133
133
|
"""Stop server without errors."""
|
|
134
134
|
|
|
135
135
|
container1 = MagicMock()
|
|
136
|
-
container1.name = f"{APPNAME}-iknl-system-{InstanceType.SERVER}"
|
|
136
|
+
container1.name = f"{APPNAME}-iknl-system-{InstanceType.SERVER.value}"
|
|
137
137
|
containers.containers.list.return_value = [container1]
|
|
138
138
|
|
|
139
139
|
runner = CliRunner()
|
vantage6/cli/__build__
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
15
|
vantage6/cli/algostore/list.py
CHANGED
vantage6/cli/algostore/start.py
CHANGED
|
@@ -54,7 +54,7 @@ def cli_algo_store_start(
|
|
|
54
54
|
Start the algorithm store server.
|
|
55
55
|
"""
|
|
56
56
|
info("Starting algorithm store...")
|
|
57
|
-
docker_client = check_for_start(ctx, InstanceType.ALGORITHM_STORE)
|
|
57
|
+
docker_client = check_for_start(ctx, InstanceType.ALGORITHM_STORE.value)
|
|
58
58
|
|
|
59
59
|
image = get_image(image, ctx, "algorithm-store", DEFAULT_ALGO_STORE_IMAGE)
|
|
60
60
|
|
|
@@ -91,7 +91,7 @@ def cli_algo_store_start(
|
|
|
91
91
|
mounts=mounts,
|
|
92
92
|
detach=True,
|
|
93
93
|
labels={
|
|
94
|
-
f"{APPNAME}-type": InstanceType.ALGORITHM_STORE,
|
|
94
|
+
f"{APPNAME}-type": InstanceType.ALGORITHM_STORE.value,
|
|
95
95
|
"name": ctx.config_file_name,
|
|
96
96
|
},
|
|
97
97
|
environment=environment_vars,
|
vantage6/cli/algostore/stop.py
CHANGED
|
@@ -23,7 +23,7 @@ def cli_algo_store_stop(ctx: AlgorithmStoreContext, all_stores: bool):
|
|
|
23
23
|
client = docker.from_env()
|
|
24
24
|
|
|
25
25
|
running_stores = client.containers.list(
|
|
26
|
-
filters={"label": f"{APPNAME}-type={InstanceType.ALGORITHM_STORE}"}
|
|
26
|
+
filters={"label": f"{APPNAME}-type={InstanceType.ALGORITHM_STORE.value}"}
|
|
27
27
|
)
|
|
28
28
|
|
|
29
29
|
if not running_stores:
|
vantage6/cli/common/utils.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import enum
|
|
1
2
|
import questionary as q
|
|
2
3
|
from colorama import Fore, Style
|
|
3
4
|
import click
|
|
@@ -88,7 +89,11 @@ def get_server_configuration_list(instance_type: InstanceType.SERVER) -> None:
|
|
|
88
89
|
client = docker.from_env()
|
|
89
90
|
ctx_class = select_context_class(instance_type)
|
|
90
91
|
|
|
91
|
-
|
|
92
|
+
instance_type_value = (
|
|
93
|
+
instance_type.value if isinstance(instance_type, enum.Enum) else instance_type
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
running_server_names = get_running_servers(client, instance_type_value)
|
|
92
97
|
header = "\nName" + (21 * " ") + "Status" + (10 * " ") + "System/User"
|
|
93
98
|
|
|
94
99
|
click.echo(header)
|
|
@@ -102,7 +107,8 @@ def get_server_configuration_list(instance_type: InstanceType.SERVER) -> None:
|
|
|
102
107
|
for config in configs:
|
|
103
108
|
status = (
|
|
104
109
|
running
|
|
105
|
-
if f"{APPNAME}-{config.name}-system-{
|
|
110
|
+
if f"{APPNAME}-{config.name}-system-{instance_type_value}"
|
|
111
|
+
in running_server_names
|
|
106
112
|
else stopped
|
|
107
113
|
)
|
|
108
114
|
click.echo(f"{config.name:25}" f"{status:25} System ")
|
|
@@ -112,7 +118,8 @@ def get_server_configuration_list(instance_type: InstanceType.SERVER) -> None:
|
|
|
112
118
|
for config in configs:
|
|
113
119
|
status = (
|
|
114
120
|
running
|
|
115
|
-
if f"{APPNAME}-{config.name}-user-{
|
|
121
|
+
if f"{APPNAME}-{config.name}-user-{instance_type_value}"
|
|
122
|
+
in running_server_names
|
|
116
123
|
else stopped
|
|
117
124
|
)
|
|
118
125
|
click.echo(f"{config.name:25}" f"{status:25} User ")
|
|
@@ -53,7 +53,7 @@ class AlgorithmStoreContext(BaseServerContext):
|
|
|
53
53
|
str
|
|
54
54
|
Server's docker container name
|
|
55
55
|
"""
|
|
56
|
-
return f"{APPNAME}-{self.name}-{self.scope}-{ServerType.ALGORITHM_STORE}"
|
|
56
|
+
return f"{APPNAME}-{self.name}-{self.scope}-{ServerType.ALGORITHM_STORE.value}"
|
|
57
57
|
|
|
58
58
|
@classmethod
|
|
59
59
|
def from_external_config_file(
|
vantage6/cli/context/node.py
CHANGED
|
@@ -136,7 +136,7 @@ class NodeContext(AppContext):
|
|
|
136
136
|
Path
|
|
137
137
|
Path to the data folder
|
|
138
138
|
"""
|
|
139
|
-
return AppContext.type_data_folder(InstanceType.NODE, system_folders)
|
|
139
|
+
return AppContext.type_data_folder(InstanceType.NODE.value, system_folders)
|
|
140
140
|
|
|
141
141
|
@property
|
|
142
142
|
def databases(self) -> dict:
|
|
@@ -130,6 +130,6 @@ def find_running_node_names(client: docker.DockerClient) -> list[str]:
|
|
|
130
130
|
List of names of running nodes
|
|
131
131
|
"""
|
|
132
132
|
running_nodes = client.containers.list(
|
|
133
|
-
filters={"label": f"{APPNAME}-type={InstanceType.NODE}"}
|
|
133
|
+
filters={"label": f"{APPNAME}-type={InstanceType.NODE.value}"}
|
|
134
134
|
)
|
|
135
135
|
return [node.name for node in running_nodes]
|
vantage6/cli/node/start.py
CHANGED
|
@@ -78,7 +78,7 @@ def cli_node_start(
|
|
|
78
78
|
|
|
79
79
|
# check that this node is not already running
|
|
80
80
|
running_nodes = docker_client.containers.list(
|
|
81
|
-
filters={"label": f"{APPNAME}-type={InstanceType.NODE}"}
|
|
81
|
+
filters={"label": f"{APPNAME}-type={InstanceType.NODE.value}"}
|
|
82
82
|
)
|
|
83
83
|
|
|
84
84
|
suffix = "system" if system_folders else "user"
|
|
@@ -306,7 +306,7 @@ def cli_node_start(
|
|
|
306
306
|
volumes=volumes,
|
|
307
307
|
detach=True,
|
|
308
308
|
labels={
|
|
309
|
-
f"{APPNAME}-type": InstanceType.NODE,
|
|
309
|
+
f"{APPNAME}-type": InstanceType.NODE.value,
|
|
310
310
|
"system": str(system_folders),
|
|
311
311
|
"name": ctx.config_file_name,
|
|
312
312
|
},
|
vantage6/cli/server/import_.py
CHANGED
|
@@ -132,7 +132,10 @@ def cli_server_import(
|
|
|
132
132
|
command=cmd,
|
|
133
133
|
mounts=mounts,
|
|
134
134
|
detach=True,
|
|
135
|
-
labels={
|
|
135
|
+
labels={
|
|
136
|
+
f"{APPNAME}-type": InstanceType.SERVER.value,
|
|
137
|
+
"name": ctx.config_file_name,
|
|
138
|
+
},
|
|
136
139
|
environment=environment_vars,
|
|
137
140
|
auto_remove=not keep,
|
|
138
141
|
tty=True,
|
vantage6/cli/server/list.py
CHANGED
vantage6/cli/server/shell.py
CHANGED
|
@@ -28,7 +28,7 @@ def cli_server_shell(ctx: ServerContext) -> None:
|
|
|
28
28
|
docker_client = docker.from_env()
|
|
29
29
|
|
|
30
30
|
running_servers = docker_client.containers.list(
|
|
31
|
-
filters={"label": f"{APPNAME}-type={InstanceType.SERVER}"}
|
|
31
|
+
filters={"label": f"{APPNAME}-type={InstanceType.SERVER.value}"}
|
|
32
32
|
)
|
|
33
33
|
|
|
34
34
|
if ctx.docker_container_name not in [s.name for s in running_servers]:
|
vantage6/cli/server/start.py
CHANGED
|
@@ -83,7 +83,7 @@ def cli_server_start(
|
|
|
83
83
|
Start the server.
|
|
84
84
|
"""
|
|
85
85
|
info("Starting server...")
|
|
86
|
-
docker_client = check_for_start(ctx, InstanceType.SERVER)
|
|
86
|
+
docker_client = check_for_start(ctx, InstanceType.SERVER.value)
|
|
87
87
|
|
|
88
88
|
image = get_image(image, ctx, "server", DEFAULT_SERVER_IMAGE)
|
|
89
89
|
|
|
@@ -157,7 +157,10 @@ def cli_server_start(
|
|
|
157
157
|
command=cmd,
|
|
158
158
|
mounts=mounts,
|
|
159
159
|
detach=True,
|
|
160
|
-
labels={
|
|
160
|
+
labels={
|
|
161
|
+
f"{APPNAME}-type": InstanceType.SERVER.value,
|
|
162
|
+
"name": ctx.config_file_name,
|
|
163
|
+
},
|
|
161
164
|
environment=environment_vars,
|
|
162
165
|
ports={f"{internal_port}/tcp": (ip, port_)},
|
|
163
166
|
name=ctx.docker_container_name,
|
vantage6/cli/server/stop.py
CHANGED
|
@@ -37,7 +37,7 @@ def cli_server_stop(name: str, system_folders: bool, all_servers: bool):
|
|
|
37
37
|
client = docker.from_env()
|
|
38
38
|
|
|
39
39
|
running_servers = client.containers.list(
|
|
40
|
-
filters={"label": f"{APPNAME}-type={InstanceType.SERVER}"}
|
|
40
|
+
filters={"label": f"{APPNAME}-type={InstanceType.SERVER.value}"}
|
|
41
41
|
)
|
|
42
42
|
|
|
43
43
|
if not running_servers:
|
|
@@ -62,7 +62,7 @@ def cli_server_stop(name: str, system_folders: bool, all_servers: bool):
|
|
|
62
62
|
return
|
|
63
63
|
else:
|
|
64
64
|
post_fix = "system" if system_folders else "user"
|
|
65
|
-
container_name = f"{APPNAME}-{name}-{post_fix}-{InstanceType.SERVER}"
|
|
65
|
+
container_name = f"{APPNAME}-{name}-{post_fix}-{InstanceType.SERVER.value}"
|
|
66
66
|
|
|
67
67
|
if container_name not in running_server_names:
|
|
68
68
|
error(f"{Fore.RED}{name}{Style.RESET_ALL} is not running!")
|
vantage6/cli/server/version.py
CHANGED
|
@@ -22,10 +22,10 @@ def cli_server_version(name: str, system_folders: bool) -> None:
|
|
|
22
22
|
check_docker_running()
|
|
23
23
|
client = docker.from_env()
|
|
24
24
|
|
|
25
|
-
running_server_names = get_running_servers(client, InstanceType.SERVER)
|
|
25
|
+
running_server_names = get_running_servers(client, InstanceType.SERVER.value)
|
|
26
26
|
|
|
27
27
|
name = get_server_name(
|
|
28
|
-
name, system_folders, running_server_names, InstanceType.SERVER
|
|
28
|
+
name, system_folders, running_server_names, InstanceType.SERVER.value
|
|
29
29
|
)
|
|
30
30
|
|
|
31
31
|
if name in running_server_names:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: vantage6
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.0a15
|
|
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.0a15
|
|
20
|
+
Requires-Dist: vantage6-client==5.0.0a15
|
|
21
21
|
Provides-Extra: dev
|
|
22
22
|
Requires-Dist: coverage==6.4.4; extra == "dev"
|
|
23
23
|
Requires-Dist: black; extra == "dev"
|
|
@@ -1,13 +1,13 @@
|
|
|
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
3
|
tests_cli/test_node_cli.py,sha256=ajFdG1sTa9H7PjqK2dhcp3k59HGsJyO6ZoRfxgIUHcA,16842
|
|
4
|
-
tests_cli/test_server_cli.py,sha256=
|
|
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=5in6ZZjXMnaPfHJrS2IShfnDuFMDkAqpEgF9t2F9i9s,2
|
|
7
7
|
vantage6/cli/__init__.py,sha256=ZXbeQ_-g2-M4XYteWZkoO5lMFYhqjm5doQgGy1fq8i0,125
|
|
8
8
|
vantage6/cli/_version.py,sha256=iDijqhgy5jzZ0LAyzW1LlXeeuMcHWMyg9D8xbXtV7Ck,696
|
|
9
9
|
vantage6/cli/cli.py,sha256=B0F328FSBBslwplMPk8lIlr0r-taKuCgb8v9DIdyE3Q,5699
|
|
10
|
-
vantage6/cli/configuration_manager.py,sha256=
|
|
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
|
|
@@ -15,18 +15,18 @@ vantage6/cli/algorithm/create.py,sha256=kRT1BlBcb0fDaB2Q988WxtA6EyAZmOW5QoU2uhbw
|
|
|
15
15
|
vantage6/cli/algorithm/update.py,sha256=WwAfTnq0kTOgePUsBzGoo1AJQqGMn82E9Bjk1wf61CQ,1338
|
|
16
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
31
|
vantage6/cli/node/attach.py,sha256=cmouPrkbIbg21_wlAe-L-ecmrKVxiDkzGmEtRaCnKQY,276
|
|
32
32
|
vantage6/cli/node/clean.py,sha256=uCty2GNuwoTybs1nIOygQLxtbleQ-rnnS6_4ieWVmCw,1199
|
|
@@ -37,34 +37,34 @@ vantage6/cli/node/new.py,sha256=wuv8mdL4sLV91TJMIksU8dx2LlcUFrA1oORyiICruMw,2039
|
|
|
37
37
|
vantage6/cli/node/remove.py,sha256=Al1XALUwciOU6zIRQB2D9EggUdvtU23laOZTWyYKKvc,3552
|
|
38
38
|
vantage6/cli/node/restart.py,sha256=bWx0n4tN8TWOy_o8lJkA7AR-H1UIbfAiPp93I5wXg1Y,3709
|
|
39
39
|
vantage6/cli/node/set_api_key.py,sha256=2kB8wveTy9_N8kX4huVhJhY86Ppd2BI8v-d7MRXQAdA,1877
|
|
40
|
-
vantage6/cli/node/start.py,sha256=
|
|
40
|
+
vantage6/cli/node/start.py,sha256=mV4vDBBtFcxva4MJdg5ymsstefDM4bV4pmhSsVX1o4k,12407
|
|
41
41
|
vantage6/cli/node/stop.py,sha256=Hf5z2r6ttbW-DeU0cdHNXIJcgL-eIVRv8i7zZLo4foY,4159
|
|
42
42
|
vantage6/cli/node/version.py,sha256=X921xyIvIPYObPac2Si5msZ2tay5ySidnPWmGj1ilZw,1959
|
|
43
|
-
vantage6/cli/node/common/__init__.py,sha256=
|
|
43
|
+
vantage6/cli/node/common/__init__.py,sha256=ziGS3skkX6Kf4uvFqe22kdFbSck7mubNK5a-KgDAxX8,3467
|
|
44
44
|
vantage6/cli/rabbitmq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
vantage6/cli/rabbitmq/definitions.py,sha256=CcS9jG7ZGB6LjzHQqZ2FliDurPItUvNSjHrOYptORZg,637
|
|
46
46
|
vantage6/cli/rabbitmq/queue_manager.py,sha256=KGDGHy4NBN8O9xhjzfI7mh65i9lOQIqQwrOFqvGFdHI,7545
|
|
47
47
|
vantage6/cli/rabbitmq/rabbitmq.config,sha256=LYAQAEoXaF472XeJDYXc9JfWSETIzPRIR2W-JB2i7fU,136
|
|
48
48
|
vantage6/cli/server/attach.py,sha256=q1E40nGCBEFUF1p94sZoU-Ud3OXAUy4-FJqcP7Gqa7U,322
|
|
49
49
|
vantage6/cli/server/files.py,sha256=LJhFyYHcEnCgFhVAM-lX6_EnfhMJ7YPdN21kVIpmwkc,507
|
|
50
|
-
vantage6/cli/server/import_.py,sha256=
|
|
51
|
-
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
|
|
52
52
|
vantage6/cli/server/new.py,sha256=JnUMMD0UUSCOdO0K7v19l5HOV7vnMd9D38WUoEJ2F00,2094
|
|
53
53
|
vantage6/cli/server/remove.py,sha256=6tfKfVa5dYnZAKQYo_VlGZTuiugi7sh2F3U2cZ7mCmQ,1627
|
|
54
|
-
vantage6/cli/server/shell.py,sha256=
|
|
55
|
-
vantage6/cli/server/start.py,sha256=
|
|
56
|
-
vantage6/cli/server/stop.py,sha256=
|
|
57
|
-
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
|
|
58
58
|
vantage6/cli/server/common/__init__.py,sha256=htv0mFYa4GhIHdzA2xqUUgKhHcMh09UQERlIjIgrwOM,2062
|
|
59
|
-
vantage6/cli/template/algo_store_config.j2,sha256=
|
|
60
|
-
vantage6/cli/template/node_config.j2,sha256
|
|
61
|
-
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
|
|
62
62
|
vantage6/cli/template/server_import_config.j2,sha256=9WT2XeG9-ADoYLb4ahXhof3i9Fcvg0oqwNPyFwLJpvc,1827
|
|
63
63
|
vantage6/cli/test/feature_tester.py,sha256=M8hvebupPwYjcBZoUB8GB3qb8G1-d3ipNzRMc_3-Z8E,2761
|
|
64
64
|
vantage6/cli/test/integration_test.py,sha256=MctR_t-WEyxzFpMdc6ByTcX1BQglZiT5-CIOQXTBBWo,4034
|
|
65
65
|
vantage6/cli/test/common/diagnostic_runner.py,sha256=F8vEaCD6HeKWDcQGVzRkPYxdvEk9owqfciOVdN3bHbw,6607
|
|
66
|
-
vantage6-5.0.
|
|
67
|
-
vantage6-5.0.
|
|
68
|
-
vantage6-5.0.
|
|
69
|
-
vantage6-5.0.
|
|
70
|
-
vantage6-5.0.
|
|
66
|
+
vantage6-5.0.0a15.dist-info/METADATA,sha256=bRl_OC-079RNRUeEMKi791fDu5ynSHuGhgFP6W5M5ak,10887
|
|
67
|
+
vantage6-5.0.0a15.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
68
|
+
vantage6-5.0.0a15.dist-info/entry_points.txt,sha256=YFBvwjxoeAGxYyPC-YevEgOBBYRGaXkS6jiOGGCLNy0,157
|
|
69
|
+
vantage6-5.0.0a15.dist-info/top_level.txt,sha256=CYDIBS8jEfFq5YCs_Fuit54K9-3wdosZppTrsymIoUk,19
|
|
70
|
+
vantage6-5.0.0a15.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|