vantage6 5.0.0a0__py3-none-any.whl → 5.0.0a9__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 (45) hide show
  1. tests_cli/test_node_cli.py +36 -25
  2. tests_cli/test_server_cli.py +33 -12
  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 +6 -25
  9. vantage6/cli/algostore/new.py +9 -3
  10. vantage6/cli/cli.py +6 -11
  11. vantage6/cli/common/start.py +1 -1
  12. vantage6/cli/common/utils.py +42 -4
  13. vantage6/cli/configuration_wizard.py +63 -51
  14. vantage6/cli/context/node.py +18 -1
  15. vantage6/cli/node/attach.py +5 -62
  16. vantage6/cli/node/clean.py +6 -2
  17. vantage6/cli/node/common/__init__.py +26 -4
  18. vantage6/cli/node/create_private_key.py +10 -2
  19. vantage6/cli/node/new.py +7 -3
  20. vantage6/cli/node/restart.py +128 -0
  21. vantage6/cli/node/set_api_key.py +7 -3
  22. vantage6/cli/node/start.py +12 -4
  23. vantage6/cli/node/stop.py +7 -3
  24. vantage6/cli/node/version.py +7 -3
  25. vantage6/cli/server/attach.py +5 -51
  26. vantage6/cli/server/new.py +7 -3
  27. vantage6/cli/server/start.py +1 -1
  28. vantage6/cli/server/stop.py +7 -3
  29. vantage6/cli/template/node_config.j2 +3 -1
  30. vantage6/cli/test/common/diagnostic_runner.py +2 -4
  31. vantage6/cli/test/feature_tester.py +10 -3
  32. vantage6/cli/test/integration_test.py +113 -113
  33. vantage6/cli/utils.py +5 -1
  34. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a9.dist-info}/METADATA +5 -5
  35. vantage6-5.0.0a9.dist-info/RECORD +70 -0
  36. vantage6/cli/dev/create.py +0 -632
  37. vantage6/cli/dev/data/olympic_athletes_2016.csv +0 -2425
  38. vantage6/cli/dev/remove.py +0 -94
  39. vantage6/cli/dev/start.py +0 -123
  40. vantage6/cli/dev/stop.py +0 -47
  41. vantage6/cli/dev/utils.py +0 -24
  42. vantage6-5.0.0a0.dist-info/RECORD +0 -75
  43. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a9.dist-info}/WHEEL +0 -0
  44. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a9.dist-info}/entry_points.txt +0 -0
  45. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a9.dist-info}/top_level.txt +0 -0
@@ -1,94 +0,0 @@
1
- import subprocess
2
- import itertools
3
- from shutil import rmtree
4
- from pathlib import Path
5
-
6
- import click
7
-
8
- from vantage6.cli.context.algorithm_store import AlgorithmStoreContext
9
- from vantage6.common import info
10
- from vantage6.cli.context.server import ServerContext
11
- from vantage6.cli.context.node import NodeContext
12
- from vantage6.cli.server.remove import cli_server_remove
13
- from vantage6.cli.utils import remove_file
14
- from vantage6.common.globals import InstanceType
15
- from vantage6.cli.dev.utils import get_dev_server_context
16
-
17
-
18
- @click.command()
19
- @click.option("-n", "--name", default=None, help="Name of the configuration.")
20
- @click.option(
21
- "-c",
22
- "--config",
23
- default=None,
24
- help="Path to configuration-file; overrides --name",
25
- )
26
- @click.pass_context
27
- def remove_demo_network(
28
- click_ctx: click.Context, name: str | None, config: str | None
29
- ) -> None:
30
- """Remove all related demo network files and folders.
31
-
32
- Select a server configuration to remove that server and the nodes attached
33
- to it.
34
- """
35
- ctx = get_dev_server_context(config, name)
36
-
37
- # remove the server
38
- for handler in itertools.chain(ctx.log.handlers, ctx.log.root.handlers):
39
- handler.close()
40
- click_ctx.invoke(cli_server_remove, ctx=ctx, force=True)
41
-
42
- # removing the server import config
43
- info("Deleting demo import config file")
44
- server_configs = ServerContext.instance_folders(
45
- InstanceType.SERVER, ctx.name, system_folders=False
46
- )
47
- import_config_to_del = Path(server_configs["dev"]) / f"{ctx.name}.yaml"
48
- remove_file(import_config_to_del, "import_configuration")
49
-
50
- # also remove the server folder
51
- server_configs = ServerContext.instance_folders(
52
- InstanceType.SERVER, ctx.name, system_folders=False
53
- )
54
- server_folder = server_configs["data"]
55
- if server_folder.is_dir():
56
- rmtree(server_folder)
57
-
58
- # remove the store folder
59
- store_configs = AlgorithmStoreContext.instance_folders(
60
- InstanceType.ALGORITHM_STORE, f"{ctx.name}_store", system_folders=False
61
- )
62
- store_folder = store_configs["data"]
63
- if store_folder.is_dir():
64
- rmtree(store_folder)
65
-
66
- # remove the store config file
67
- subprocess.run(
68
- [
69
- "v6",
70
- "algorithm-store",
71
- "remove",
72
- "-n",
73
- f"{ctx.name}_store",
74
- "--force",
75
- "--user",
76
- ]
77
- )
78
-
79
- # remove the nodes
80
- configs, _ = NodeContext.available_configurations(system_folders=False)
81
- node_names = [
82
- config.name for config in configs if config.name.startswith(f"{ctx.name}_node_")
83
- ]
84
- for name in node_names:
85
- node_ctx = NodeContext(name, False)
86
- for handler in itertools.chain(
87
- node_ctx.log.handlers, node_ctx.log.root.handlers
88
- ):
89
- handler.close()
90
- subprocess.run(["v6", "node", "remove", "-n", name, "--user", "--force"])
91
-
92
- # remove data files attached to the network
93
- data_dirs_nodes = NodeContext.instance_folders("node", "", False)["dev"]
94
- rmtree(Path(data_dirs_nodes / ctx.name))
vantage6/cli/dev/start.py DELETED
@@ -1,123 +0,0 @@
1
- import subprocess
2
- import click
3
-
4
- from vantage6.common import info
5
- from vantage6.client import Client
6
- from vantage6.cli.globals import COMMUNITY_STORE
7
- from vantage6.cli.context.algorithm_store import AlgorithmStoreContext
8
- from vantage6.cli.context.node import NodeContext
9
- from vantage6.cli.server.start import cli_server_start
10
- from vantage6.cli.dev.utils import get_dev_server_context
11
- from vantage6.common.globals import DEFAULT_API_PATH
12
-
13
-
14
- @click.command()
15
- @click.option("-n", "--name", default=None, help="Name of the configuration.")
16
- @click.option(
17
- "-c",
18
- "--config",
19
- default=None,
20
- help="Path to configuration-file; overrides --name",
21
- )
22
- @click.option(
23
- "--server-image", type=str, default=None, help="Server Docker image to use"
24
- )
25
- @click.option("--node-image", type=str, default=None, help="Node Docker image to use")
26
- @click.option(
27
- "--store-image", type=str, default=None, help="Algorithm Store Docker image to use"
28
- )
29
- @click.pass_context
30
- def start_demo_network(
31
- click_ctx: click.Context,
32
- name: str | None,
33
- config: str | None,
34
- server_image: str | None,
35
- node_image: str | None,
36
- store_image: str | None,
37
- ) -> None:
38
- """Starts running a demo-network.
39
-
40
- Select a server configuration to run its demo network. You should choose a
41
- server configuration that you created earlier for a demo network. If you
42
- have not created a demo network, you can run `v6 dev create-demo-network` to
43
- create one.
44
- """
45
- ctx = get_dev_server_context(config, name)
46
-
47
- # run the server
48
- info("Starting server...")
49
- click_ctx.invoke(
50
- cli_server_start,
51
- ctx=ctx,
52
- ip=None,
53
- port=None,
54
- image=server_image,
55
- start_ui=True,
56
- ui_port=None,
57
- start_rabbitmq=False,
58
- rabbitmq_image=None,
59
- keep=True,
60
- mount_src="",
61
- attach=False,
62
- system_folders=False,
63
- )
64
-
65
- # run the store
66
- info("Starting algorithm store...")
67
- cmd = ["v6", "algorithm-store", "start", "--name", f"{ctx.name}_store", "--user"]
68
- if store_image:
69
- cmd.extend(["--image", store_image])
70
- subprocess.run(cmd)
71
-
72
- # run all nodes that belong to this server
73
- configs, _ = NodeContext.available_configurations(system_folders=False)
74
- node_names = [
75
- config.name for config in configs if config.name.startswith(f"{ctx.name}_node_")
76
- ]
77
- for name in node_names:
78
- cmd = ["v6", "node", "start", "--name", name]
79
- if node_image:
80
- cmd.extend(["--image", node_image])
81
- subprocess.run(cmd)
82
-
83
- # now that both server and store have been started, couple them
84
- info("Linking local algorithm store to server...")
85
- store_ctxs, _ = AlgorithmStoreContext.available_configurations(system_folders=False)
86
- store_ctx = [c for c in store_ctxs if c.name == f"{ctx.name}_store"][0]
87
- client = Client(
88
- "http://localhost",
89
- ctx.config["port"],
90
- ctx.config["api_path"],
91
- log_level="warn",
92
- )
93
- # TODO these credentials are hardcoded and may change if changed elsewhere. Link
94
- # them together so that they are guaranteed to be the same.
95
- USERNAME = "dev_admin"
96
- PASSWORD = "password"
97
- client.authenticate(USERNAME, PASSWORD)
98
- existing_stores = client.store.list().get("data", [])
99
- existing_urls = [store["url"] for store in existing_stores]
100
- api_path = store_ctx.config.get("api_path", DEFAULT_API_PATH)
101
- local_store_url = f"http://localhost:{store_ctx.config['port']}{api_path}"
102
- if not local_store_url in existing_urls:
103
- client.store.create(
104
- algorithm_store_url=local_store_url,
105
- name="local store",
106
- all_collaborations=True,
107
- force=True, # required to link localhost store
108
- )
109
- # note that we do not need to register the user as root of the store: this is
110
- # already handled in the store config file and is executed on store startup (and
111
- # successful because server is already started up at that point)
112
- info("Done!")
113
-
114
- # link the community store also to the server
115
- info("Linking community algorithm store to local server...")
116
- if not COMMUNITY_STORE in existing_urls:
117
- client.store.create(
118
- algorithm_store_url=COMMUNITY_STORE,
119
- name="Community store (read-only)",
120
- all_collaborations=True,
121
- force=True, # required to continue when linking localhost server
122
- )
123
- info("Done!")
vantage6/cli/dev/stop.py DELETED
@@ -1,47 +0,0 @@
1
- import click
2
-
3
- from vantage6.cli.context.node import NodeContext
4
- from vantage6.cli.server.stop import cli_server_stop
5
- from vantage6.cli.node.stop import cli_node_stop
6
- from vantage6.cli.algostore.stop import cli_algo_store_stop
7
- from vantage6.cli.dev.utils import get_dev_server_context
8
-
9
-
10
- @click.command()
11
- @click.option("-n", "--name", default=None, help="Name of the configuration.")
12
- @click.option(
13
- "-c",
14
- "--config",
15
- default=None,
16
- help="Path to configuration-file; overrides --name",
17
- )
18
- @click.pass_context
19
- def stop_demo_network(
20
- click_ctx: click.Context, name: str | None, config: str | None
21
- ) -> None:
22
- """Stops a demo network's server and nodes.
23
-
24
- Select a server configuration to stop that server and the nodes attached
25
- to it.
26
- """
27
- ctx = get_dev_server_context(config, name)
28
-
29
- # stop the server
30
- click_ctx.invoke(
31
- cli_server_stop, name=ctx.name, system_folders=False, all_servers=False
32
- )
33
-
34
- # stop the algorithm store
35
- click_ctx.invoke(
36
- cli_algo_store_stop, name=f"{ctx.name}_store", system_folders=False
37
- )
38
-
39
- # stop the nodes
40
- configs, _ = NodeContext.available_configurations(False)
41
- node_names = [
42
- config.name for config in configs if config.name.startswith(f"{ctx.name}_node_")
43
- ]
44
- for name in node_names:
45
- click_ctx.invoke(
46
- cli_node_stop, name=name, system_folders=False, all_nodes=False, force=False
47
- )
vantage6/cli/dev/utils.py DELETED
@@ -1,24 +0,0 @@
1
- from vantage6.common.globals import InstanceType
2
- from vantage6.cli.configuration_wizard import select_configuration_questionaire
3
- from vantage6.cli.context import get_context
4
- from vantage6.cli.context.server import ServerContext
5
-
6
-
7
- def get_dev_server_context(config: str | None, name: str | None) -> ServerContext:
8
- """
9
- Get the server context for the development server.
10
-
11
- Parameters
12
- ----------
13
- config : str | None
14
- Path to the configuration file. If None, the name will be used.
15
- name : str | None
16
- Name of the configuration. If None, a questionaire will be shown.
17
- """
18
- if config:
19
- return ServerContext.from_external_config_file(config)
20
- if not name:
21
- name = select_configuration_questionaire(
22
- InstanceType.SERVER, system_folders=False
23
- )
24
- return get_context(InstanceType.SERVER, name, system_folders=False)
@@ -1,75 +0,0 @@
1
- tests_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
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
8
- vantage6/cli/_version.py,sha256=iDijqhgy5jzZ0LAyzW1LlXeeuMcHWMyg9D8xbXtV7Ck,696
9
- vantage6/cli/cli.py,sha256=AecGqgdDI_IaAbedeRN9F8E3hvSpqfbG9Ot7LiAfBTs,6074
10
- vantage6/cli/configuration_manager.py,sha256=cN4tQpQjLG5GaGrsjEP-5ed_LqvPApIkNkM1J6ai3n0,3588
11
- vantage6/cli/configuration_wizard.py,sha256=sgXKC_bZvZUtOlEQCVA_oe23aUiYHs0ITtHTD7ITcq8,20440
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
17
- vantage6/cli/algostore/files.py,sha256=r89VRixK_K-c44qseq58Aa2Dqf1wEf8yompQRN5AVu4,580
18
- vantage6/cli/algostore/list.py,sha256=owBrU52ANp8oE68Rk1Hhd6yNYqWX-7uREtmCok_wndg,417
19
- vantage6/cli/algostore/new.py,sha256=9CMYBjHyXPIhOx7wtkFf99-6EHSTG70MRdg8m8VtMUg,2009
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
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
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
28
- vantage6/cli/context/base_server.py,sha256=paKSzNrKWD-J6eakHAtGELk2cD05A8NqoCAuQfF7c2s,2972
29
- vantage6/cli/context/node.py,sha256=JaXYuY60T1auIHy2EM0s10v4Oc16bzwwl6CBSAu37Po,6882
30
- vantage6/cli/context/server.py,sha256=vBGJWNsJoVcIryX5OLiWnFklNRcjOVkhqm2U5tqW5b0,3946
31
- vantage6/cli/dev/create.py,sha256=zW0w7ONVO3EAZjkC7uLSW2E0WJ3y6ItZStXYbLqsMJU,19099
32
- vantage6/cli/dev/remove.py,sha256=1ZX5L3bqTsRUt8PkXUvH7tgSLR32viZ5Ve_Q1k-sQ5M,3055
33
- vantage6/cli/dev/start.py,sha256=XrBnRxkGUM371ZBs3JQRqlONB2Lo-s2uTqblv4H3tXg,4447
34
- vantage6/cli/dev/stop.py,sha256=gPy87r8T3nqe7RFJjlYE9Bns8N3RiPPcdzNIFCoqGRY,1430
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
40
- vantage6/cli/node/files.py,sha256=V7bJeR8weX0Llpp6y9wQoNrRsvlotEE6e70aTJp9j6M,1331
41
- vantage6/cli/node/list.py,sha256=_WZ8EBIEUlzFhVp3cR2MK5FUuQicMEZHhD8npMwKSpM,1664
42
- vantage6/cli/node/new.py,sha256=C-ZHQOiOtslOy6mF-G-MuR5E_65GKJW7L4FxxrKojUg,1923
43
- 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
49
- vantage6/cli/rabbitmq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
- vantage6/cli/rabbitmq/definitions.py,sha256=CcS9jG7ZGB6LjzHQqZ2FliDurPItUvNSjHrOYptORZg,637
51
- vantage6/cli/rabbitmq/queue_manager.py,sha256=KGDGHy4NBN8O9xhjzfI7mh65i9lOQIqQwrOFqvGFdHI,7545
52
- vantage6/cli/rabbitmq/rabbitmq.config,sha256=LYAQAEoXaF472XeJDYXc9JfWSETIzPRIR2W-JB2i7fU,136
53
- vantage6/cli/server/attach.py,sha256=ov5wJ0veZLKQTam-gBka5lDxcrmHscFZgHV1qFQkXZw,2003
54
- 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
57
- vantage6/cli/server/new.py,sha256=SGOQXQDNg9ihnPpmJCDTQ-Yn2GkDhEu84dtsQ3v5Pq4,1978
58
- 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=4EnRl72Ub72UpcKQCmi9Utrczbts0r0DWLf-BHqy4_4,7735
61
- vantage6/cli/server/stop.py,sha256=SMMcYGEP1pkDaeN-U33CkVafKLawhw2uDDKrj6RUIlk,4012
62
- vantage6/cli/server/version.py,sha256=AUYp0CJBnYF8tD3HXqE7kM0RycXipjOYEDkraswUlaA,1306
63
- 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=XHJm5x5KEwuBAZERzWzzVKJxcw7Px5k-LYSMET_8dqU,743
66
- vantage6/cli/template/server_config.j2,sha256=LKPa-ocK7h8qXgzrEYVHjxovaGX0CRQ0uPXImdAcpz0,804
67
- vantage6/cli/template/server_import_config.j2,sha256=9WT2XeG9-ADoYLb4ahXhof3i9Fcvg0oqwNPyFwLJpvc,1827
68
- vantage6/cli/test/feature_tester.py,sha256=rdxRvDelVuOceXvbZh5dRc5Pdw4bVNiotj0m__RWN5Q,2563
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.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,,