vantage6 5.0.0a0__py3-none-any.whl → 5.0.0a7__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 (39) hide show
  1. tests_cli/test_node_cli.py +33 -5
  2. tests_cli/test_server_cli.py +1 -1
  3. tests_cli/test_wizard.py +5 -5
  4. vantage6/cli/__build__ +1 -1
  5. vantage6/cli/__init__.py +1 -1
  6. vantage6/cli/algorithm/create.py +26 -8
  7. vantage6/cli/algorithm/update.py +5 -1
  8. vantage6/cli/algostore/attach.py +24 -7
  9. vantage6/cli/algostore/new.py +9 -3
  10. vantage6/cli/cli.py +2 -0
  11. vantage6/cli/common/start.py +1 -1
  12. vantage6/cli/common/utils.py +27 -4
  13. vantage6/cli/configuration_wizard.py +63 -51
  14. vantage6/cli/context/node.py +18 -1
  15. vantage6/cli/dev/create.py +3 -2
  16. vantage6/cli/dev/start.py +2 -2
  17. vantage6/cli/node/attach.py +7 -3
  18. vantage6/cli/node/clean.py +6 -2
  19. vantage6/cli/node/common/__init__.py +26 -4
  20. vantage6/cli/node/create_private_key.py +10 -2
  21. vantage6/cli/node/new.py +7 -3
  22. vantage6/cli/node/restart.py +128 -0
  23. vantage6/cli/node/set_api_key.py +7 -3
  24. vantage6/cli/node/start.py +12 -4
  25. vantage6/cli/node/stop.py +7 -3
  26. vantage6/cli/node/version.py +7 -3
  27. vantage6/cli/server/attach.py +7 -3
  28. vantage6/cli/server/new.py +7 -3
  29. vantage6/cli/server/start.py +1 -1
  30. vantage6/cli/server/stop.py +7 -3
  31. vantage6/cli/template/node_config.j2 +3 -1
  32. vantage6/cli/test/feature_tester.py +10 -3
  33. vantage6/cli/utils.py +5 -1
  34. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a7.dist-info}/METADATA +5 -5
  35. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a7.dist-info}/RECORD +38 -38
  36. vantage6/cli/dev/data/olympic_athletes_2016.csv +0 -2425
  37. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a7.dist-info}/WHEEL +0 -0
  38. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a7.dist-info}/entry_points.txt +0 -0
  39. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a7.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,128 @@
1
+ import subprocess
2
+ import click
3
+ import questionary as q
4
+ import docker
5
+
6
+ from vantage6.common import warning, error
7
+ from vantage6.common.docker.addons import check_docker_running
8
+ from vantage6.cli.common.utils import get_name_from_container_name
9
+ from vantage6.cli.node.stop import cli_node_stop
10
+ from vantage6.cli.node.common import find_running_node_names
11
+ from vantage6.cli.globals import DEFAULT_NODE_SYSTEM_FOLDERS as N_FOL
12
+
13
+
14
+ @click.command()
15
+ @click.option("-n", "--name", default=None, help="Configuration name")
16
+ @click.option(
17
+ "--system",
18
+ "system_folders",
19
+ flag_value=True,
20
+ help="Search for configuration in system folders instead of " "user folders",
21
+ )
22
+ @click.option(
23
+ "--user",
24
+ "system_folders",
25
+ flag_value=False,
26
+ default=N_FOL,
27
+ help="Search for configuration in the user folders instead of "
28
+ "system folders. This is the default.",
29
+ )
30
+ @click.option("-i", "--image", default=None, help="Node Docker image to use")
31
+ @click.option(
32
+ "--keep/--auto-remove",
33
+ default=False,
34
+ help="Keep node container after finishing. Useful for debugging",
35
+ )
36
+ @click.option(
37
+ "--force-db-mount",
38
+ is_flag=True,
39
+ help="Always mount node databases; skip the check if they are existing files.",
40
+ )
41
+ @click.option(
42
+ "--attach/--detach",
43
+ default=False,
44
+ help="Show node logs on the current console after starting the " "node",
45
+ )
46
+ @click.option(
47
+ "--mount-src",
48
+ default="",
49
+ help="Override vantage6 source code in container with the source"
50
+ " code in this path",
51
+ )
52
+ @click.option("--all", "all_nodes", flag_value=True, help="Stop all running nodes")
53
+ @click.option(
54
+ "--force",
55
+ "force",
56
+ flag_value=True,
57
+ help="Kill nodes instantly; don't wait for them to shut down",
58
+ )
59
+ @click.pass_context
60
+ def cli_node_restart(
61
+ click_ctx: click.Context,
62
+ name: str,
63
+ system_folders: bool,
64
+ image: str,
65
+ keep: bool,
66
+ mount_src: str,
67
+ attach: bool,
68
+ force_db_mount: bool,
69
+ all_nodes: bool,
70
+ force: bool,
71
+ ) -> None:
72
+ """Restart the node"""
73
+ check_docker_running()
74
+ client = docker.from_env()
75
+
76
+ running_node_names = find_running_node_names(client)
77
+ if not running_node_names:
78
+ warning("No nodes are currently running. No action taken.")
79
+ return
80
+
81
+ if attach and all_nodes:
82
+ error(
83
+ "Cannot attach logs of all nodes at once. Please remove either the "
84
+ "'--all' or '--attach' option."
85
+ )
86
+ return
87
+
88
+ if all_nodes:
89
+ names = [
90
+ get_name_from_container_name(container_name)
91
+ for container_name in running_node_names
92
+ ]
93
+ else:
94
+ if not name:
95
+ try:
96
+ container_name = q.select(
97
+ "Select the node you wish to restart:", choices=running_node_names
98
+ ).unsafe_ask()
99
+ except KeyboardInterrupt:
100
+ error("Aborted by user!")
101
+ return
102
+ names = [get_name_from_container_name(container_name)]
103
+ else:
104
+ names = [name]
105
+
106
+ for node_name in names:
107
+ click_ctx.invoke(
108
+ cli_node_stop,
109
+ name=node_name,
110
+ system_folders=system_folders,
111
+ all_nodes=False,
112
+ force=force,
113
+ )
114
+
115
+ cmd = ["v6", "node", "start", "--name", node_name]
116
+ if system_folders:
117
+ cmd.append("--system")
118
+ if image:
119
+ cmd.extend(["--image", image])
120
+ if keep:
121
+ cmd.append("--keep")
122
+ if mount_src:
123
+ cmd.extend(["--mount-src", mount_src])
124
+ if attach:
125
+ cmd.append("--attach")
126
+ if force_db_mount:
127
+ cmd.append("--force-db-mount")
128
+ subprocess.run(cmd, check=True)
@@ -1,7 +1,7 @@
1
1
  import click
2
2
  import questionary as q
3
3
 
4
- from vantage6.common import error, info, check_config_writeable
4
+ from vantage6.common import error, info, ensure_config_dir_writable
5
5
  from vantage6.cli.context.node import NodeContext
6
6
  from vantage6.cli.globals import DEFAULT_NODE_SYSTEM_FOLDERS as N_FOL
7
7
  from vantage6.cli.configuration_wizard import NodeConfigurationManager
@@ -33,12 +33,16 @@ def cli_node_set_api_key(name: str, api_key: str, system_folders: bool) -> None:
33
33
  name = select_node(name, system_folders)
34
34
 
35
35
  # Check that we can write in the config folder
36
- if not check_config_writeable(system_folders):
36
+ if not ensure_config_dir_writable(system_folders):
37
37
  error("Your user does not have write access to all folders. Exiting")
38
38
  exit(1)
39
39
 
40
40
  if not api_key:
41
- api_key = q.text("Please enter your new API key:").ask()
41
+ try:
42
+ api_key = q.text("Please enter your new API key:").unsafe_ask()
43
+ except KeyboardInterrupt:
44
+ error("API key input aborted.")
45
+ exit(1)
42
46
 
43
47
  # get configuration manager
44
48
  ctx = NodeContext(name, system_folders=system_folders)
@@ -177,7 +177,7 @@ def cli_node_start(
177
177
  if Path(fullpath).exists():
178
178
  mounts.append(("/mnt/private_key.pem", str(fullpath)))
179
179
  else:
180
- warning(f"private key file provided {fullpath}, " "but does not exists")
180
+ warning(f"Private key file is provided {fullpath}, but does not exist")
181
181
 
182
182
  # Mount private keys for ssh tunnels
183
183
  ssh_tunnels = ctx.config.get("ssh-tunnels", [])
@@ -235,15 +235,23 @@ def cli_node_start(
235
235
  label_capitals = label.upper()
236
236
 
237
237
  try:
238
- file_based = Path(uri).exists()
238
+ db_file_exists = Path(uri).exists()
239
239
  except Exception:
240
240
  # If the database uri cannot be parsed, it is definitely not a
241
241
  # file. In case of http servers or sql servers, checking the path
242
242
  # of the the uri will lead to an OS-dependent error, which is why
243
243
  # we catch all exceptions here.
244
- file_based = False
244
+ db_file_exists = False
245
245
 
246
- if not file_based and not force_db_mount:
246
+ if db_type in ["folder", "csv", "parquet", "excel"] and not db_file_exists:
247
+ error(
248
+ f"Database {Fore.RED}{uri}{Style.RESET_ALL} not found. Databases of "
249
+ f"type '{db_type}' must be present on the harddrive. Please update "
250
+ "your node configuration file."
251
+ )
252
+ exit(1)
253
+
254
+ if not db_file_exists and not force_db_mount:
247
255
  debug(" - non file-based database added")
248
256
  env[f"{label_capitals}_DATABASE_URI"] = uri
249
257
  else:
vantage6/cli/node/stop.py CHANGED
@@ -69,9 +69,13 @@ def cli_node_stop(
69
69
  _stop_node(client, container_name, force, system_folders)
70
70
  else:
71
71
  if not name:
72
- container_name = q.select(
73
- "Select the node you wish to stop:", choices=running_node_names
74
- ).ask()
72
+ try:
73
+ container_name = q.select(
74
+ "Select the node you wish to stop:", choices=running_node_names
75
+ ).unsafe_ask()
76
+ except KeyboardInterrupt:
77
+ error("Aborted by user!")
78
+ return
75
79
  else:
76
80
  post_fix = "system" if system_folders else "user"
77
81
  container_name = f"{APPNAME}-{name}-{post_fix}"
@@ -42,9 +42,13 @@ def cli_node_version(name: str, system_folders: bool) -> None:
42
42
  "nodes that are running"
43
43
  )
44
44
  exit(1)
45
- name = q.select(
46
- "Select the node you wish to inspect:", choices=running_node_names
47
- ).ask()
45
+ try:
46
+ name = q.select(
47
+ "Select the node you wish to inspect:", choices=running_node_names
48
+ ).unsafe_ask()
49
+ except KeyboardInterrupt:
50
+ error("Aborted by user!")
51
+ return
48
52
  else:
49
53
  post_fix = "system" if system_folders else "user"
50
54
  name = f"{APPNAME}-{name}-{post_fix}"
@@ -34,9 +34,13 @@ def cli_server_attach(name: str, system_folders: bool) -> None:
34
34
  running_server_names = [node.name for node in running_servers]
35
35
 
36
36
  if not name:
37
- name = q.select(
38
- "Select the server you wish to inspect:", choices=running_server_names
39
- ).ask()
37
+ try:
38
+ name = q.select(
39
+ "Select the server you wish to attach:", choices=running_server_names
40
+ ).unsafe_ask()
41
+ except KeyboardInterrupt:
42
+ error("Aborted by user!")
43
+ return
40
44
  else:
41
45
  post_fix = "system" if system_folders else "user"
42
46
  name = f"{APPNAME}-{name}-{post_fix}-{InstanceType.SERVER}"
@@ -1,7 +1,7 @@
1
1
  import click
2
2
  from colorama import Fore, Style
3
3
 
4
- from vantage6.common import info, error, check_config_writeable
4
+ from vantage6.common import info, error, ensure_config_dir_writable
5
5
  from vantage6.cli.globals import DEFAULT_SERVER_SYSTEM_FOLDERS
6
6
  from vantage6.cli.context.server import ServerContext
7
7
  from vantage6.cli.configuration_wizard import configuration_wizard
@@ -36,7 +36,7 @@ def cli_server_new(name: str, system_folders: bool) -> None:
36
36
  exit(1)
37
37
 
38
38
  # Check that we can write in this folder
39
- if not check_config_writeable(system_folders):
39
+ if not ensure_config_dir_writable(system_folders):
40
40
  error("Your user does not have write access to all folders. Exiting")
41
41
  info(
42
42
  f"Create a new server using '{Fore.GREEN}v6 server new "
@@ -45,7 +45,11 @@ def cli_server_new(name: str, system_folders: bool) -> None:
45
45
  exit(1)
46
46
 
47
47
  # create config in ctx location
48
- cfg_file = configuration_wizard(InstanceType.SERVER, name, system_folders)
48
+ try:
49
+ cfg_file = configuration_wizard(InstanceType.SERVER, name, system_folders)
50
+ except KeyboardInterrupt:
51
+ error("Configuration creation aborted.")
52
+ exit(1)
49
53
  info(f"New configuration created: {Fore.GREEN}{cfg_file}{Style.RESET_ALL}")
50
54
 
51
55
  # info(f"root user created.")
@@ -131,7 +131,7 @@ def cli_server_start(
131
131
  )
132
132
  else:
133
133
  warning(
134
- "Message queue disabled! This means that the vantage6 server "
134
+ "Message queue is not set up! This means that the vantage6 server "
135
135
  "cannot be scaled horizontally!"
136
136
  )
137
137
 
@@ -53,9 +53,13 @@ def cli_server_stop(name: str, system_folders: bool, all_servers: bool):
53
53
 
54
54
  # make sure we have a configuration name to work with
55
55
  if not name:
56
- container_name = q.select(
57
- "Select the server you wish to stop:", choices=running_server_names
58
- ).ask()
56
+ try:
57
+ container_name = q.select(
58
+ "Select the server you wish to stop:", choices=running_server_names
59
+ ).unsafe_ask()
60
+ except KeyboardInterrupt:
61
+ error("Aborted by user!")
62
+ return
59
63
  else:
60
64
  post_fix = "system" if system_folders else "user"
61
65
  container_name = f"{APPNAME}-{name}-{post_fix}-{InstanceType.SERVER}"
@@ -1,5 +1,5 @@
1
1
  api_key: {{ api_key }}
2
- api_path: /api
2
+ api_path: {{ api_path }}
3
3
  databases:
4
4
  {% for label, path in databases.items() %}
5
5
  - label: {{ label }}
@@ -28,6 +28,8 @@ logging:
28
28
  name: docker.utils.config
29
29
  - level: warning
30
30
  name: docker.auth
31
+ - level: warning
32
+ name: kubernetes.client.rest
31
33
  port: {{ port }}
32
34
  server_url: {{ server_url }}
33
35
  task_dir: {{ task_dir}}
@@ -16,13 +16,13 @@ from vantage6.cli.test.common.diagnostic_runner import DiagnosticRunner
16
16
  @click.option(
17
17
  "--username",
18
18
  type=str,
19
- default="root",
19
+ default="dev_admin",
20
20
  help="Username of vantage6 user account to create the task with",
21
21
  )
22
22
  @click.option(
23
23
  "--password",
24
24
  type=str,
25
- default="root",
25
+ default="password",
26
26
  help="Password of vantage6 user account to create the task with",
27
27
  )
28
28
  @click.option(
@@ -56,6 +56,12 @@ from vantage6.cli.test.common.diagnostic_runner import DiagnosticRunner
56
56
  default=None,
57
57
  help="Path to the private key for end-to-end encryption",
58
58
  )
59
+ @click.option(
60
+ "--mfa-code",
61
+ type=str,
62
+ help="Multi-factor authentication code. Use this if MFA is enabled on the "
63
+ "server.",
64
+ )
59
65
  def cli_test_features(
60
66
  host: str,
61
67
  port: int,
@@ -68,6 +74,7 @@ def cli_test_features(
68
74
  online_only: bool,
69
75
  no_vpn: bool,
70
76
  private_key: str | None,
77
+ mfa_code: str | None,
71
78
  ) -> list[dict]:
72
79
  """
73
80
  Run diagnostic checks on an existing vantage6 network.
@@ -83,7 +90,7 @@ def cli_test_features(
83
90
  organizations = None
84
91
 
85
92
  client = UserClient(host=host, port=port, path=api_path, log_level="critical")
86
- client.authenticate(username=username, password=password)
93
+ client.authenticate(username=username, password=password, mfa_code=mfa_code)
87
94
  client.setup_encryption(private_key)
88
95
  diagnose = DiagnosticRunner(client, collaboration, organizations, online_only)
89
96
  res = diagnose(base=True, vpn=not no_vpn)
vantage6/cli/utils.py CHANGED
@@ -90,7 +90,11 @@ def prompt_config_name(name: str | None) -> None:
90
90
  The name of the configuration
91
91
  """
92
92
  if not name:
93
- name = q.text("Please enter a configuration-name:").ask()
93
+ try:
94
+ name = q.text("Please enter a configuration-name:").unsafe_ask()
95
+ except KeyboardInterrupt:
96
+ error("Aborted by user!")
97
+ exit(1)
94
98
  if name.count(" ") > 0:
95
99
  name = name.replace(" ", "-")
96
100
  info(f"Replaced spaces from configuration name: {name}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vantage6
3
- Version: 5.0.0a0
3
+ Version: 5.0.0a7
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.4
13
+ Requires-Dist: jinja2==3.1.5
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
- Requires-Dist: SQLAlchemy==1.4.46
19
- Requires-Dist: vantage6-common==5.0.0a0
20
- Requires-Dist: vantage6-client==5.0.0a0
18
+ Requires-Dist: sqlalchemy==2.0.37
19
+ Requires-Dist: vantage6-common==5.0.0a7
20
+ Requires-Dist: vantage6-client==5.0.0a7
21
21
  Provides-Extra: dev
22
22
  Requires-Dist: coverage==6.4.4; extra == "dev"
23
23
  Requires-Dist: black; extra == "dev"
@@ -1,75 +1,75 @@
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=09qQGsn7vhmIJz9B1sABPuiEfcL2-d8FxhsMUtmXAO0,16066
4
- tests_cli/test_server_cli.py,sha256=61et2WpcVAr4SAsQTLJEeBy1RnewujMvFgFW6N_i7kg,5863
5
- tests_cli/test_wizard.py,sha256=eoa0WQ9yw7IjtaeAKzbK8-sOCBGow7gLrhhmUx024p8,4881
6
- vantage6/cli/__build__,sha256=X-zrZv_IbzjZUnhsbWlsecLbwjndTpG0ZynXOif7V-k,1
7
- vantage6/cli/__init__.py,sha256=-Ec-Z7ELDveGdSALXda3qdUGpkuKyJQfhN3eIm7koHE,127
3
+ tests_cli/test_node_cli.py,sha256=XAKRS1-SXdeBRz3ob25q467soCIB178pKVz8MJVZbCQ,17534
4
+ tests_cli/test_server_cli.py,sha256=M0Vh4XZIxZPwPPFDY03pBP3yk98vmmW_2G91BcM0_Yg,5867
5
+ tests_cli/test_wizard.py,sha256=NIj59eiCBuVNJXwhofrWLmLIKAsD45gSOzqOFWLmWhY,4916
6
+ vantage6/cli/__build__,sha256=eQJpm-Qsio5G-7tFAXJlF-hrIsVqGJ92JabaSQgbJFE,1
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=AecGqgdDI_IaAbedeRN9F8E3hvSpqfbG9Ot7LiAfBTs,6074
9
+ vantage6/cli/cli.py,sha256=NHpiPcljADaVzwGYrG4FWVMfbmDRguSZWBeGxcdQxDo,6184
10
10
  vantage6/cli/configuration_manager.py,sha256=cN4tQpQjLG5GaGrsjEP-5ed_LqvPApIkNkM1J6ai3n0,3588
11
- vantage6/cli/configuration_wizard.py,sha256=sgXKC_bZvZUtOlEQCVA_oe23aUiYHs0ITtHTD7ITcq8,20440
11
+ vantage6/cli/configuration_wizard.py,sha256=ifqvrVqHkxoM0ZVUVIwlYXFByzAbuVlahNjmwFGLVRU,20874
12
12
  vantage6/cli/globals.py,sha256=8AWI55FBbumVQTuI1bJzKp5hiRWtiwsVgTTKqWgRBes,1616
13
- vantage6/cli/utils.py,sha256=8_PZeihjopYXQU10gMwIKr87yDAq-_z2LKi0BcdhNEc,2365
14
- vantage6/cli/algorithm/create.py,sha256=2Ks0JnWNldsn9Eg2h_lqn-yIMaJ-OYs-B3cv58tCiIs,1628
15
- vantage6/cli/algorithm/update.py,sha256=qN1YzUK5oiBvDepQOvUGpSVxf_eGaD1DRjh522ythE8,1224
16
- vantage6/cli/algostore/attach.py,sha256=Gr5Zb320cMdAOOpNbhx459M1YlI9qaCjt8YlSm-wMOQ,1135
13
+ vantage6/cli/utils.py,sha256=Jfr6IeHMQDk_wU5X7rJ1dRY118dhVVX8PwzwMYMv9Vw,2481
14
+ vantage6/cli/algorithm/create.py,sha256=kRT1BlBcb0fDaB2Q988WxtA6EyAZmOW5QoU2uhbwBIo,2075
15
+ vantage6/cli/algorithm/update.py,sha256=WwAfTnq0kTOgePUsBzGoo1AJQqGMn82E9Bjk1wf61CQ,1338
16
+ vantage6/cli/algostore/attach.py,sha256=LVMgomAbNlsbxTggl6HsX-loCT4ZRWgeh6OsbRY9qqM,1667
17
17
  vantage6/cli/algostore/files.py,sha256=r89VRixK_K-c44qseq58Aa2Dqf1wEf8yompQRN5AVu4,580
18
18
  vantage6/cli/algostore/list.py,sha256=owBrU52ANp8oE68Rk1Hhd6yNYqWX-7uREtmCok_wndg,417
19
- vantage6/cli/algostore/new.py,sha256=9CMYBjHyXPIhOx7wtkFf99-6EHSTG70MRdg8m8VtMUg,2009
19
+ vantage6/cli/algostore/new.py,sha256=ekqZ7_qCUtWs0QU6coo34thfkksHbCAYAD8nr0SKgO4,2147
20
20
  vantage6/cli/algostore/remove.py,sha256=ieQLpo2ZpblpPxaeRXdB7IO0DzTtURnveYQltW7TTSw,1643
21
21
  vantage6/cli/algostore/start.py,sha256=lkijG7K5TymXpZqVLhrW-YPhBmex_8T6WSLSruj64PQ,3169
22
22
  vantage6/cli/algostore/stop.py,sha256=8g5DlISUXTf7abs4BTi2b2XOsuKWTwUGuCPIOMgSAeA,1835
23
23
  vantage6/cli/common/decorator.py,sha256=7Iwlcc_ekgXJco4tNjEV79ul43Q28OrieiGkvDBeGeE,3625
24
- vantage6/cli/common/start.py,sha256=tjz61lQ9yYf-ZAow_Zm3J17oJVDLSLBdxhfR8Wb9eoo,9255
25
- vantage6/cli/common/utils.py,sha256=2zp8KfFCNQLfDAhI8pCv35d6hc6xVaBhPyLfwWvJsm8,3992
24
+ vantage6/cli/common/start.py,sha256=IazXW6hKzFTomGu19lvr5z-EOzyXOD1fKokCwiIA8zc,9253
25
+ vantage6/cli/common/utils.py,sha256=Hm-8U2aolFbJ2ChZHUH20Nyofrd6T-YyOz1acRUuhUo,4596
26
26
  vantage6/cli/context/__init__.py,sha256=e8rfY2tCyu6_SLQ-rbVzEHkDtmbnGCZRHFN_HH-2bnA,2683
27
27
  vantage6/cli/context/algorithm_store.py,sha256=NsmrgDCTJ10KqQ209Q1sq-hBhuU_4LRqfbj3SZ-ivnU,3938
28
28
  vantage6/cli/context/base_server.py,sha256=paKSzNrKWD-J6eakHAtGELk2cD05A8NqoCAuQfF7c2s,2972
29
- vantage6/cli/context/node.py,sha256=JaXYuY60T1auIHy2EM0s10v4Oc16bzwwl6CBSAu37Po,6882
29
+ vantage6/cli/context/node.py,sha256=BIDSIwbNkoqgAg8CUMA7Q_cJjp8vNwqnr3daY8X4Juw,7362
30
30
  vantage6/cli/context/server.py,sha256=vBGJWNsJoVcIryX5OLiWnFklNRcjOVkhqm2U5tqW5b0,3946
31
- vantage6/cli/dev/create.py,sha256=zW0w7ONVO3EAZjkC7uLSW2E0WJ3y6ItZStXYbLqsMJU,19099
31
+ vantage6/cli/dev/create.py,sha256=2-vqK1GpL-fFJEiZ4Anp0ZUAI94dHKWBbU6-wbyZWbo,19194
32
32
  vantage6/cli/dev/remove.py,sha256=1ZX5L3bqTsRUt8PkXUvH7tgSLR32viZ5Ve_Q1k-sQ5M,3055
33
- vantage6/cli/dev/start.py,sha256=XrBnRxkGUM371ZBs3JQRqlONB2Lo-s2uTqblv4H3tXg,4447
33
+ vantage6/cli/dev/start.py,sha256=fUMoPAEpmXoDAJidAmjIziaHZX1yqEErcrTKEXqPik8,4471
34
34
  vantage6/cli/dev/stop.py,sha256=gPy87r8T3nqe7RFJjlYE9Bns8N3RiPPcdzNIFCoqGRY,1430
35
35
  vantage6/cli/dev/utils.py,sha256=DOTwPVXKZWhJfto9FG7EFgMhMaFJHXuhLDSlBCUCR1o,888
36
- vantage6/cli/dev/data/olympic_athletes_2016.csv,sha256=WGycwcwMKEyOyJc3aEo4EhrnBJiTSE0kZAr50j2qzGk,77699
37
- vantage6/cli/node/attach.py,sha256=c7g_OszwNoad1CdByQR2RSdm_GlZmaLI-Ahmsmf7sfk,2204
38
- vantage6/cli/node/clean.py,sha256=9W9PaVILx8SnmB2lymw23KJeQmH5nFcX79QHcEOvo0A,1124
39
- vantage6/cli/node/create_private_key.py,sha256=ojzwis_EW5AaBHc7gK9LmGhFxZTAkuBUQpEpjYcnC74,4997
36
+ vantage6/cli/node/attach.py,sha256=6VADWJb4NTXu-TK_XR8It8J7OJ8f_xE2P8cpSd3vAzQ,2326
37
+ vantage6/cli/node/clean.py,sha256=uCty2GNuwoTybs1nIOygQLxtbleQ-rnnS6_4ieWVmCw,1199
38
+ vantage6/cli/node/create_private_key.py,sha256=yciL1DtACxrBeEGxeaDi0NefDTvegG6s4rr5jA9J5TY,5207
40
39
  vantage6/cli/node/files.py,sha256=V7bJeR8weX0Llpp6y9wQoNrRsvlotEE6e70aTJp9j6M,1331
41
40
  vantage6/cli/node/list.py,sha256=_WZ8EBIEUlzFhVp3cR2MK5FUuQicMEZHhD8npMwKSpM,1664
42
- vantage6/cli/node/new.py,sha256=C-ZHQOiOtslOy6mF-G-MuR5E_65GKJW7L4FxxrKojUg,1923
41
+ vantage6/cli/node/new.py,sha256=wuv8mdL4sLV91TJMIksU8dx2LlcUFrA1oORyiICruMw,2039
43
42
  vantage6/cli/node/remove.py,sha256=Al1XALUwciOU6zIRQB2D9EggUdvtU23laOZTWyYKKvc,3552
44
- vantage6/cli/node/set_api_key.py,sha256=IX07QwpTGefRC92lqm34HX9xThRVcXl5DcWSLt1Ro6w,1747
45
- vantage6/cli/node/start.py,sha256=xhTJ8SKj4owL_i_HvKG4hqJKveHiw9XvkoIvmRGXBhk,12027
46
- vantage6/cli/node/stop.py,sha256=B2AuzM2whU6W5ktqc9VpT9wxbN2nTqAydlGPnieKQ-w,4020
47
- vantage6/cli/node/version.py,sha256=eYJ4ayQsEsHPL00V88UY1LhmlnQCzF-Te4lrw4SFbHQ,1836
48
- vantage6/cli/node/common/__init__.py,sha256=pketeJOFViQIPpa9nCNe-q_6Mb55BJ2R2k_2jMQOeX4,2862
43
+ vantage6/cli/node/restart.py,sha256=bWx0n4tN8TWOy_o8lJkA7AR-H1UIbfAiPp93I5wXg1Y,3709
44
+ vantage6/cli/node/set_api_key.py,sha256=2kB8wveTy9_N8kX4huVhJhY86Ppd2BI8v-d7MRXQAdA,1877
45
+ vantage6/cli/node/start.py,sha256=LsHoIKprsfyoDAbSwxCCux3W5zZHsaEiOKz1dZ9-ynE,12395
46
+ vantage6/cli/node/stop.py,sha256=Hf5z2r6ttbW-DeU0cdHNXIJcgL-eIVRv8i7zZLo4foY,4159
47
+ vantage6/cli/node/version.py,sha256=X921xyIvIPYObPac2Si5msZ2tay5ySidnPWmGj1ilZw,1959
48
+ vantage6/cli/node/common/__init__.py,sha256=Jq3cI0Y1cybM_khCmdl1xwY1H6FLNJSHuu1J85DFg7Q,3461
49
49
  vantage6/cli/rabbitmq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
50
  vantage6/cli/rabbitmq/definitions.py,sha256=CcS9jG7ZGB6LjzHQqZ2FliDurPItUvNSjHrOYptORZg,637
51
51
  vantage6/cli/rabbitmq/queue_manager.py,sha256=KGDGHy4NBN8O9xhjzfI7mh65i9lOQIqQwrOFqvGFdHI,7545
52
52
  vantage6/cli/rabbitmq/rabbitmq.config,sha256=LYAQAEoXaF472XeJDYXc9JfWSETIzPRIR2W-JB2i7fU,136
53
- vantage6/cli/server/attach.py,sha256=ov5wJ0veZLKQTam-gBka5lDxcrmHscFZgHV1qFQkXZw,2003
53
+ vantage6/cli/server/attach.py,sha256=AVwL1DprOFNzYrmuE_OVUGAiQNW4x923bDML-ZzhR3s,2125
54
54
  vantage6/cli/server/files.py,sha256=LJhFyYHcEnCgFhVAM-lX6_EnfhMJ7YPdN21kVIpmwkc,507
55
55
  vantage6/cli/server/import_.py,sha256=mp6DgHzmRXd_M_507QPJOp0IiAtbXJY4V0IZxdkY0Lg,4516
56
56
  vantage6/cli/server/list.py,sha256=62ocNRtOAwbx9bgviva4Nd7_3rA7XmFDA55SPyNWZ1o,403
57
- vantage6/cli/server/new.py,sha256=SGOQXQDNg9ihnPpmJCDTQ-Yn2GkDhEu84dtsQ3v5Pq4,1978
57
+ vantage6/cli/server/new.py,sha256=JnUMMD0UUSCOdO0K7v19l5HOV7vnMd9D38WUoEJ2F00,2094
58
58
  vantage6/cli/server/remove.py,sha256=6tfKfVa5dYnZAKQYo_VlGZTuiugi7sh2F3U2cZ7mCmQ,1627
59
59
  vantage6/cli/server/shell.py,sha256=9b_koFmBQRQYIK57usm75hZAaIF4msicLTu55dYHlzM,1583
60
- vantage6/cli/server/start.py,sha256=4EnRl72Ub72UpcKQCmi9Utrczbts0r0DWLf-BHqy4_4,7735
61
- vantage6/cli/server/stop.py,sha256=SMMcYGEP1pkDaeN-U33CkVafKLawhw2uDDKrj6RUIlk,4012
60
+ vantage6/cli/server/start.py,sha256=sHTK7tCwLvFJbNKac5FB1IYhb8oTUrA9rM3nKjIplHw,7740
61
+ vantage6/cli/server/stop.py,sha256=tUreB1ogc9SwKMrmejfvErtwt9d5M_qOON2s9UZmLvE,4135
62
62
  vantage6/cli/server/version.py,sha256=AUYp0CJBnYF8tD3HXqE7kM0RycXipjOYEDkraswUlaA,1306
63
63
  vantage6/cli/server/common/__init__.py,sha256=htv0mFYa4GhIHdzA2xqUUgKhHcMh09UQERlIjIgrwOM,2062
64
64
  vantage6/cli/template/algo_store_config.j2,sha256=QBGakqMOvUTcOIdAqoR4X6E8eApQ65ggAnQmaUViAV0,554
65
- vantage6/cli/template/node_config.j2,sha256=XHJm5x5KEwuBAZERzWzzVKJxcw7Px5k-LYSMET_8dqU,743
65
+ vantage6/cli/template/node_config.j2,sha256=TPeCbfYEblwWonZkyBqzXluaoN-w0MpthwMTN8lTTW8,805
66
66
  vantage6/cli/template/server_config.j2,sha256=LKPa-ocK7h8qXgzrEYVHjxovaGX0CRQ0uPXImdAcpz0,804
67
67
  vantage6/cli/template/server_import_config.j2,sha256=9WT2XeG9-ADoYLb4ahXhof3i9Fcvg0oqwNPyFwLJpvc,1827
68
- vantage6/cli/test/feature_tester.py,sha256=rdxRvDelVuOceXvbZh5dRc5Pdw4bVNiotj0m__RWN5Q,2563
68
+ vantage6/cli/test/feature_tester.py,sha256=M8hvebupPwYjcBZoUB8GB3qb8G1-d3ipNzRMc_3-Z8E,2761
69
69
  vantage6/cli/test/integration_test.py,sha256=yQVG72XKDNH_eOPTsf3pb65FCBwJzMxn5VNfUGemJBM,3808
70
70
  vantage6/cli/test/common/diagnostic_runner.py,sha256=x_4ikihgoSTKI914pqlgVziBSg5LpV6MheO6O_GBCeA,6657
71
- vantage6-5.0.0a0.dist-info/METADATA,sha256=d1H1ybAXg6hxsOk4mpEzSGyD6V7hpbfGtr0RM8buFx0,10884
72
- vantage6-5.0.0a0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
73
- vantage6-5.0.0a0.dist-info/entry_points.txt,sha256=YFBvwjxoeAGxYyPC-YevEgOBBYRGaXkS6jiOGGCLNy0,157
74
- vantage6-5.0.0a0.dist-info/top_level.txt,sha256=CYDIBS8jEfFq5YCs_Fuit54K9-3wdosZppTrsymIoUk,19
75
- vantage6-5.0.0a0.dist-info/RECORD,,
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,,