frogml-cli 0.0.4__py3-none-any.whl → 0.0.5__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.
frogml_cli/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # fmt: off
2
2
  __author__ = '''JFrog Ltd.'''
3
- __version__ = '0.0.4'
3
+ __version__ = '0.0.5'
4
4
  __name__ = 'frogml_cli'
5
5
 
6
6
  from frogml import wire_dependencies
@@ -7,7 +7,7 @@ from frogml_cli.commands.alerts.register.ui import register_channel
7
7
 
8
8
  @click.group(
9
9
  name="alerts",
10
- help="Commands for interacting with the Qwak alerts System",
10
+ help="Commands for interacting with JFrogML alerts System",
11
11
  )
12
12
  def alerts_commands_group():
13
13
  pass
@@ -5,29 +5,34 @@ from typing import List
5
5
  from frogml.core.clients.alerts_registry import AlertingRegistryClient
6
6
  from frogml.core.clients.alerts_registry.channel import Channel
7
7
 
8
- from frogml_cli.inner.file_registry import extract_class_objects, list_qwak_python_files
8
+ from frogml_cli.inner.file_registry import (
9
+ extract_class_objects,
10
+ list_frogml_python_files,
11
+ )
9
12
  from frogml_cli.inner.tools.cli_tools import ask_yesno
10
13
  from frogml_cli.tools.utils import frogml_spinner
11
14
 
12
15
  FROGML_alerts_DELIMITER = "----------------------------------------"
13
16
 
14
17
 
15
- def _register_channels(qwak_python_files, alerts_client, force):
18
+ def _register_channels(frogml_python_files, alerts_client, force):
16
19
  """
17
20
  Register Channels
18
21
 
19
22
  Args:
20
- qwak_python_files: a list of python files containing qwak package imports
23
+ frogml_python_files: a list of python files containing frogml package imports
21
24
  alerts_client: AlertingRegistryClient alerts service client
22
25
  force: boolean determining if to force register all encountered Channel objects
23
26
  """
24
27
  with frogml_spinner(
25
28
  begin_text="Looking for channels to register", print_callback=print
26
29
  ):
27
- qwak_channels: List[Channel] = extract_class_objects(qwak_python_files, Channel)
30
+ frogml_channels: List[Channel] = extract_class_objects(
31
+ frogml_python_files, Channel
32
+ )
28
33
 
29
- print(f"👀 Found {len(qwak_channels)} Channels")
30
- for channel, source_file_path in qwak_channels:
34
+ print(f"👀 Found {len(frogml_channels)} Channels")
35
+ for channel, source_file_path in frogml_channels:
31
36
  channel_id, existing_channel = alerts_client.get_alerting_channel(channel.name)
32
37
  if existing_channel:
33
38
  if ask_yesno(
@@ -53,20 +58,19 @@ def execute_register_channel(path: Path, force: bool):
53
58
  path = Path(path)
54
59
 
55
60
  if path.is_file():
56
- qwak_python_files = [(str(path), os.path.abspath(path))]
61
+ frogml_python_files = [(str(path), os.path.abspath(path))]
57
62
  elif Path.is_dir(path):
58
63
  with frogml_spinner(
59
64
  begin_text="Recursively looking for python files in input dir",
60
65
  print_callback=print,
61
66
  ) as sp:
62
- qwak_python_files = list_qwak_python_files(path, sp)
63
- print(qwak_python_files)
67
+ frogml_python_files = list_frogml_python_files(path, sp)
68
+ print(frogml_python_files)
64
69
  print(sp)
65
- pass
66
70
 
67
71
  alerts_client = AlertingRegistryClient()
68
72
  _register_channels(
69
- qwak_python_files=qwak_python_files,
73
+ frogml_python_files=frogml_python_files,
70
74
  alerts_client=alerts_client,
71
75
  force=force,
72
76
  )
@@ -17,7 +17,7 @@ AUTOMATION = "automation"
17
17
 
18
18
  @click.group(
19
19
  name="automations",
20
- help="Commands for interacting with the Qwak Automations",
20
+ help="Commands for interacting with JFrogML Automations",
21
21
  )
22
22
  def automations_commands_group():
23
23
  # Click commands group injection
@@ -10,23 +10,23 @@ from frogml_cli.tools.utils import frogml_spinner
10
10
  DELIMITER = "----------------------------------------"
11
11
 
12
12
 
13
- def register_automations(qwak_python_files: List[str], force: bool):
13
+ def register_automations(frogml_python_files: List[str], force: bool):
14
14
  """
15
15
  Register Automation Entities Objects
16
16
 
17
17
  Args:
18
- qwak_python_files: a list of python files containing qwak package imports
18
+ frogml_python_files: a list of python files containing frogml package imports
19
19
  force: to force
20
20
  """
21
21
  with frogml_spinner(
22
22
  begin_text="Finding Automations to register", print_callback=print
23
23
  ):
24
- qwak_automations: List[Automation] = extract_class_objects(
25
- qwak_python_files, Automation
24
+ frogml_automations: List[Automation] = extract_class_objects(
25
+ frogml_python_files, Automation
26
26
  )
27
27
  client = AutomationsManagementClient()
28
- print(f"Found {len(qwak_automations)} Automations")
29
- for automation, source_file_path in qwak_automations:
28
+ print(f"Found {len(frogml_automations)} Automations")
29
+ for automation, source_file_path in frogml_automations:
30
30
  existing_automation = client.get_automation_by_name(automation.name)
31
31
  if existing_automation:
32
32
  if ask_yesno(
@@ -4,7 +4,7 @@ from pathlib import Path
4
4
  import click
5
5
 
6
6
  from frogml_cli.commands.automations.register._logic import register_automations
7
- from frogml_cli.inner.file_registry import list_qwak_python_files
7
+ from frogml_cli.inner.file_registry import list_frogml_python_files
8
8
  from frogml_cli.inner.tools.cli_tools import FrogMLCommand
9
9
  from frogml_cli.tools.utils import frogml_spinner
10
10
 
@@ -33,12 +33,12 @@ from frogml_cli.tools.utils import frogml_spinner
33
33
  def register(path: Path, force: bool, **kwargs):
34
34
  path = Path(path) if path else Path.cwd()
35
35
  if path.is_file():
36
- qwak_python_files = [(str(path), os.path.abspath(path))]
36
+ frogml_python_files = [(str(path), os.path.abspath(path))]
37
37
  elif Path.is_dir(path):
38
38
  with frogml_spinner(
39
39
  begin_text="Recursively looking for python files in input dir",
40
40
  print_callback=print,
41
41
  ) as sp:
42
- qwak_python_files = list_qwak_python_files(path, sp)
42
+ frogml_python_files = list_frogml_python_files(path, sp)
43
43
 
44
- register_automations(qwak_python_files, force)
44
+ register_automations(frogml_python_files, force)
@@ -12,7 +12,7 @@ from frogml_cli.commands.feature_store.trigger.ui import trigger_feature_set
12
12
 
13
13
  @click.group(
14
14
  name="features",
15
- help="Commands for interacting with the Qwak Feature Store",
15
+ help="Commands for interacting with JFrogML Feature Store",
16
16
  )
17
17
  def feature_store_commands_group():
18
18
  # Click commands group injection
@@ -32,7 +32,7 @@ DELIMITER = "----------------------------------------"
32
32
 
33
33
 
34
34
  def _register_entities(
35
- qwak_python_files: List[Tuple[str, str]],
35
+ frogml_python_files: List[Tuple[str, str]],
36
36
  registry: FeatureRegistryClient,
37
37
  force: bool,
38
38
  ):
@@ -40,19 +40,19 @@ def _register_entities(
40
40
  Register Feature Store Entity Objects
41
41
 
42
42
  Args:
43
- qwak_python_files: a list of python files containing qwak package imports
43
+ frogml_python_files: a list of python files containing frogml package imports
44
44
  registry: FeatureRegistryClient
45
45
  force: boolean determining if to force register all encountered Entity objects
46
46
  """
47
47
  with frogml_spinner(
48
48
  begin_text="Finding Entities to register", print_callback=print
49
49
  ):
50
- qwak_entities: List[Tuple[Entity, str]] = extract_class_objects(
51
- qwak_python_files, Entity
50
+ frogml_entities: List[Tuple[Entity, str]] = extract_class_objects(
51
+ frogml_python_files, Entity
52
52
  )
53
53
 
54
- print(f"👀 Found {len(qwak_entities)} Entities")
55
- for entity, source_file_path in qwak_entities:
54
+ print(f"👀 Found {len(frogml_entities)} Entities")
55
+ for entity, source_file_path in frogml_entities:
56
56
  existing_entity = registry.get_entity_by_name(entity.name)
57
57
  if existing_entity:
58
58
  if ask_yesno(
@@ -73,7 +73,7 @@ def _register_entities(
73
73
 
74
74
 
75
75
  def _register_data_sources(
76
- qwak_python_files: List[Tuple[str, str]],
76
+ frogml_python_files: List[Tuple[str, str]],
77
77
  registry: FeatureRegistryClient,
78
78
  force: bool,
79
79
  no_validation: bool,
@@ -83,7 +83,7 @@ def _register_data_sources(
83
83
  Register Feature Store Data Source Objects
84
84
 
85
85
  Args:
86
- qwak_python_files: a list of python files containing qwak package imports
86
+ frogml_python_files: a list of python files containing frogml package imports
87
87
  registry: FeatureRegistryClient
88
88
  force: boolean determining if to force register all encountered Data Source objects
89
89
  no_validation: whether to validate entities
@@ -92,12 +92,12 @@ def _register_data_sources(
92
92
  with frogml_spinner(
93
93
  begin_text="Finding Data Sources to register", print_callback=print
94
94
  ):
95
- qwak_sources: List[Tuple[BaseSource, str]] = extract_class_objects(
96
- qwak_python_files, BaseSource
95
+ frogml_sources: List[Tuple[BaseSource, str]] = extract_class_objects(
96
+ frogml_python_files, BaseSource
97
97
  )
98
98
 
99
- print(f"👀 Found {len(qwak_sources)} Data Sources")
100
- for data_source, source_file_path in qwak_sources:
99
+ print(f"👀 Found {len(frogml_sources)} Data Sources")
100
+ for data_source, source_file_path in frogml_sources:
101
101
  validation_failed = False
102
102
  artifact_url: Optional[str] = None
103
103
 
@@ -166,7 +166,7 @@ def _handle_data_source_validation(
166
166
 
167
167
 
168
168
  def _register_features_sets(
169
- qwak_python_files: List[Tuple[str, str]],
169
+ frogml_python_files: List[Tuple[str, str]],
170
170
  registry: FeatureRegistryClient,
171
171
  force: bool,
172
172
  git_commit: str,
@@ -178,7 +178,7 @@ def _register_features_sets(
178
178
  Register Feature Store Feature Set Objects
179
179
 
180
180
  Args:
181
- qwak_python_files: a list of python files containing qwak package imports
181
+ frogml_python_files: a list of python files containing frogml package imports
182
182
  registry: FeatureRegistryClient
183
183
  force: boolean determining if to force register all encountered Feature Set objects
184
184
  git_commit: the git commit of the parent folder
@@ -188,11 +188,11 @@ def _register_features_sets(
188
188
  with frogml_spinner(
189
189
  begin_text="Finding Feature Sets to register", print_callback=print
190
190
  ):
191
- qwak_feature_sets = extract_class_objects(qwak_python_files, BaseFeatureSet)
191
+ frogml_feature_sets = extract_class_objects(frogml_python_files, BaseFeatureSet)
192
192
 
193
- print(f"👀 Found {len(qwak_feature_sets)} Feature Set(s)")
193
+ print(f"👀 Found {len(frogml_feature_sets)} Feature Set(s)")
194
194
 
195
- for featureset, source_file_path in qwak_feature_sets:
195
+ for featureset, source_file_path in frogml_feature_sets:
196
196
  featureset = cast(BaseFeatureSet, featureset)
197
197
  existing_feature_set: ProtoGetFeatureSetByNameResponse = (
198
198
  registry.get_feature_set_by_name(featureset.name)
@@ -10,7 +10,7 @@ from frogml_cli.commands.feature_store.register._logic import (
10
10
  _register_entities,
11
11
  _register_features_sets,
12
12
  )
13
- from frogml_cli.inner.file_registry import list_qwak_python_files
13
+ from frogml_cli.inner.file_registry import list_frogml_python_files
14
14
  from frogml_cli.inner.tools.cli_tools import FrogMLCommand
15
15
  from frogml_cli.tools.utils import frogml_spinner
16
16
 
@@ -65,7 +65,7 @@ def register_fs_objects(
65
65
  fs_validation_ds_limit: Optional[int],
66
66
  **kwargs,
67
67
  ):
68
- qwak_python_files: List[Tuple[str, str]]
68
+ frogml_python_files: List[Tuple[str, str]]
69
69
 
70
70
  if not path:
71
71
  path = Path.cwd()
@@ -73,13 +73,13 @@ def register_fs_objects(
73
73
  path = Path(path)
74
74
 
75
75
  if path.is_file():
76
- qwak_python_files = [(str(path), os.path.abspath(path))]
76
+ frogml_python_files = [(str(path), os.path.abspath(path))]
77
77
  elif Path.is_dir(path):
78
78
  with frogml_spinner(
79
79
  begin_text="Recursively looking for python files in input dir",
80
80
  print_callback=print,
81
81
  ) as sp:
82
- qwak_python_files = list_qwak_python_files(path, sp)
82
+ frogml_python_files = list_frogml_python_files(path, sp)
83
83
 
84
84
  try:
85
85
  import git
@@ -90,10 +90,10 @@ def register_fs_objects(
90
90
  git_commit = None
91
91
 
92
92
  registry_client = FeatureRegistryClient()
93
- _register_entities(qwak_python_files, registry_client, force)
93
+ _register_entities(frogml_python_files, registry_client, force)
94
94
 
95
95
  _register_data_sources(
96
- qwak_python_files,
96
+ frogml_python_files,
97
97
  registry_client,
98
98
  force,
99
99
  no_validation,
@@ -101,7 +101,7 @@ def register_fs_objects(
101
101
  )
102
102
 
103
103
  _register_features_sets(
104
- qwak_python_files,
104
+ frogml_python_files,
105
105
  registry_client,
106
106
  force,
107
107
  git_commit,
@@ -18,7 +18,7 @@ from .utils import zip_logs
18
18
  class CLIPhaseRunHandler(PhaseRunHandler):
19
19
  BUILD_IN_PROGRESS_FORMAT = "Build phase in progress: {}"
20
20
  BUILD_FINISHED_FORMAT = "Phase successfully finished: {} after {} seconds"
21
- KEYBOARD_INTERRUPT_FORMAT = "\n{color}Stopping Qwak build (ctrl-c)"
21
+ KEYBOARD_INTERRUPT_FORMAT = "\n{color}Stopping JFrogML build (ctrl-c)"
22
22
  BUILD_FAILURE_FORMAT = "Build phase failed: {} after {} seconds"
23
23
  PIPELINE_ERROR = "\n{color}{ex}"
24
24
  SPINNER_FINISH = "✅"
@@ -10,7 +10,7 @@ from pathlib import Path
10
10
  from frogml.core.inner.build_config.build_config_v1 import BuildConfigV1
11
11
  from frogml.core.inner.build_logic.constants.host_resource import HOST_FROGML_HIDDEN_FOLDER
12
12
 
13
- from frogml_cli import __version__ as qwak_sdk_version
13
+ from frogml_cli import __version__ as frogml_cli_version
14
14
  from frogml_cli.inner.tools.logger import setup_frogml_logger
15
15
  from frogml_cli.inner.tools.logger.logger import (
16
16
  BUILD_LOCAL_FILE_HANDLER_NAME,
@@ -84,5 +84,5 @@ def setup_logger(
84
84
 
85
85
  def log_system_information(destination: Path):
86
86
  (destination / "python_version").write_text(sys.version)
87
- (destination / "qwak_sdk_version").write_text(qwak_sdk_version)
87
+ (destination / "frogml_cli_version").write_text(frogml_cli_version)
88
88
  (destination / "os_detail").write_text(platform.platform())
@@ -48,7 +48,7 @@ def build_failure_handler():
48
48
 
49
49
  def cleaning_up_after_build(step: Step):
50
50
  if os.getenv("QWAK_DEBUG") != "true":
51
- step.build_logger.debug("Removing Qwak temp artifacts directory")
51
+ step.build_logger.debug("Removing FrogML temp artifacts directory")
52
52
  shutil.rmtree(step.context.host_temp_local_build_dir, ignore_errors=True)
53
53
 
54
54
 
@@ -170,7 +170,7 @@ def _docker_login(docker_client):
170
170
  )
171
171
 
172
172
  except Exception as e:
173
- raise FrogmlException(f"Failed to login to Qwak's container registry: {e}")
173
+ raise FrogmlException(f"Failed to login to FrogML's container registry: {e}")
174
174
 
175
175
 
176
176
  def _get_aws_credentials():
@@ -30,7 +30,7 @@ MODELS_INIT_EXAMPLE_CHOICES: List[str] = get_models_init_example_choices()
30
30
  metavar="NAME",
31
31
  required=False,
32
32
  type=click.Choice(MODELS_INIT_EXAMPLE_CHOICES, case_sensitive=True),
33
- help=f"Generate a fully functioning example of a Qwak based model. Options: {' / '.join(MODELS_INIT_EXAMPLE_CHOICES)}",
33
+ help=f"Generate a fully functioning example of a FrogML based model. Options: {' / '.join(MODELS_INIT_EXAMPLE_CHOICES)}",
34
34
  )
35
35
  @click.argument("uri", metavar="URI", required=True)
36
36
  def model_init(
@@ -61,5 +61,7 @@ def model_init(
61
61
  try:
62
62
  initialize_model_structure(uri, template, logger, **template_args)
63
63
  except Exception as e:
64
- logger.error(f"Failed to initialize a Qwak model structure. Error reason:\n{e}")
64
+ logger.error(
65
+ f"Failed to initialize a FrogML model structure. Error reason:\n{e}"
66
+ )
65
67
  exit(1)
@@ -8,7 +8,7 @@ from typing import List, Tuple
8
8
  from yaspin.core import Yaspin
9
9
 
10
10
 
11
- def list_qwak_python_files(path: Path, sp: Yaspin) -> List[Tuple[str, str]]:
11
+ def list_frogml_python_files(path: Path, sp: Yaspin) -> List[Tuple[str, str]]:
12
12
  """
13
13
  Helper function which finds python files with qwak imports in a given module
14
14
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: frogml-cli
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: Frogml CLI for frogml models
5
5
  License: Apache-2.0
6
6
  Keywords: mlops,ml,deployment,serving,model,jfrog
@@ -1,10 +1,10 @@
1
- frogml_cli/__init__.py,sha256=hjYgKkdKVxDATcv7nk4gBdpxFMPJuqtLEsWuWBUiwLg,157
1
+ frogml_cli/__init__.py,sha256=6oEf8eciZ46o-Q7AeI0HhDhtV9_CBFVFUodbTi040HA,157
2
2
  frogml_cli/cli.py,sha256=Gh-KPvBf_X243Cz2TGx_mWd4K4NgXcSmpBxZfrFQSkc,1585
3
3
  frogml_cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  frogml_cli/commands/_logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  frogml_cli/commands/_logic/tools.py,sha256=uJOSfpifONXjFJjaHvm_7ivTs8K0PO56YoxhU0dktPU,239
6
6
  frogml_cli/commands/alerts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- frogml_cli/commands/alerts/alerts_commnad_group.py,sha256=zXQIJUMqUv4EpPCRXfELw-_h4Kq7EfaKP5cPNBJSMt8,500
7
+ frogml_cli/commands/alerts/alerts_commnad_group.py,sha256=8G2RdhEfiMoQ4RkhwJxFVUXWekleODnsouIvZnW27Do,499
8
8
  frogml_cli/commands/alerts/delete/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  frogml_cli/commands/alerts/delete/_logic.py,sha256=x-5YnepcLjC-SgdZ6vtq4TAaZqfg2JRj5uI9Xpg2zUE,186
10
10
  frogml_cli/commands/alerts/delete/ui.py,sha256=v1HrRbr-QnLah84lkgNjBvxXS0MnPKjdB6RwUkQbsZE,321
@@ -12,7 +12,7 @@ frogml_cli/commands/alerts/list/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
12
12
  frogml_cli/commands/alerts/list/_logic.py,sha256=8g6hj2Sr9Gm3ZiizROta23j4dXyt_9xub0qfTl3bf9Q,853
13
13
  frogml_cli/commands/alerts/list/ui.py,sha256=idcJ1GRY7PfhfEooc3e7qpdX_1kH-XIFAoUlyNxKIbM,498
14
14
  frogml_cli/commands/alerts/register/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- frogml_cli/commands/alerts/register/_logic.py,sha256=XqPJ484b-wMpJ3USTNkzafMM5mAQfmxm4JN95iwV9gk,2532
15
+ frogml_cli/commands/alerts/register/_logic.py,sha256=7CysIoYgzGHJ5QWBl3kRcw-uI4RPvCcUOTvMkudRDVo,2578
16
16
  frogml_cli/commands/alerts/register/ui.py,sha256=ajAeQB-5kI9YVstKD-fuD9LPc_3q8-XPMzn6FPWZ250,743
17
17
  frogml_cli/commands/audience/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  frogml_cli/commands/audience/_logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -52,7 +52,7 @@ frogml_cli/commands/auto_scalling/attach/_logic.py,sha256=SogY4cBC17EEfU_6vAjJJC
52
52
  frogml_cli/commands/auto_scalling/attach/ui.py,sha256=34Qa8Rl4jYt3127cxAPEda336iTK2UyQxj0RJzrh3I0,963
53
53
  frogml_cli/commands/auto_scalling/autoscaling_commands_group.py,sha256=iHlqGMObxYK-0l20dtivXMSdsksczGwYDltdZ7MQ2_s,279
54
54
  frogml_cli/commands/automations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
- frogml_cli/commands/automations/automations_commands_group.py,sha256=YEq2ZB5l3DVzvoekSBGn8x4QOSXnxzWB3FZCgGN2tQk,865
55
+ frogml_cli/commands/automations/automations_commands_group.py,sha256=uHwKMpiTZ9w4pXZ5q_WtVwcobH_rQxmqjeuwvifceuc,864
56
56
  frogml_cli/commands/automations/delete/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
57
  frogml_cli/commands/automations/delete/_logic.py,sha256=QqY_SFJyVVsL0ra0toOKt7ub-tzp3EnBGh9U_E9ImIc,242
58
58
  frogml_cli/commands/automations/delete/ui.py,sha256=8ukOWeEgEET6PUzoNzF-8IR8EIOhgMdcg4osVzUvh8E,612
@@ -65,8 +65,8 @@ frogml_cli/commands/automations/list/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
65
65
  frogml_cli/commands/automations/list/_logic.py,sha256=MOzWWgJ59Rxf5xGzFiJ3pyFGlw2VxmxnDmLHfpgwAjk,1175
66
66
  frogml_cli/commands/automations/list/ui.py,sha256=MGybaBRCUz5RZBZeE_3gJNsiM4lRDmwQZmSjG97lbpE,523
67
67
  frogml_cli/commands/automations/register/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
- frogml_cli/commands/automations/register/_logic.py,sha256=EvlOp0I--0HyZuyL2lZ-ApBol_sX2pE4QutXE6lAMhE,1648
69
- frogml_cli/commands/automations/register/ui.py,sha256=qNpQU_h3yJ_vzhtI0uYRWEyusLJxNnyo5SBsUl1dpEk,1353
68
+ frogml_cli/commands/automations/register/_logic.py,sha256=KP3eHpUfaPGLDOT2YPi9w9N02M32g5w-6wvWDFQWhGo,1662
69
+ frogml_cli/commands/automations/register/ui.py,sha256=YKt1xJnreMUxZtI81XykvkJySizqBKYgU0Yc2bBCnbU,1363
70
70
  frogml_cli/commands/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
71
  frogml_cli/commands/config/add/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
72
  frogml_cli/commands/config/add/ui.py,sha256=8v8fjkGgqXu8ynuL1mqaj3u8XxteyJY-4044nF3EU-I,1803
@@ -80,14 +80,14 @@ frogml_cli/commands/feature_store/delete/_logic.py,sha256=SzS1i9sE28MC5h_WnXrrMz
80
80
  frogml_cli/commands/feature_store/delete/ui.py,sha256=mwqlOzKlQzadzZC-kL2-7JVJ61Re1MAZllnDZArPhIc,1054
81
81
  frogml_cli/commands/feature_store/execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
82
  frogml_cli/commands/feature_store/execution/ui.py,sha256=LU75Dqud2TTTyJwKTy63p7vU9M9cPJPSq9qS01OV-sM,575
83
- frogml_cli/commands/feature_store/feature_store_command_group.py,sha256=8PWgzW8DUqg4exhXupR8iwoKhqTRRDyTLNeG0O_nppc,1267
83
+ frogml_cli/commands/feature_store/feature_store_command_group.py,sha256=rPXitoyBuwJid6A1TWiVmaZqEFmLCdfhTJasNmE0GNQ,1266
84
84
  frogml_cli/commands/feature_store/list/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
85
  frogml_cli/commands/feature_store/list/ui.py,sha256=_feg_x5aqvO2nQWHsgiAQjHlkJzX8GkrOl_r2xPt7-k,4162
86
86
  frogml_cli/commands/feature_store/pause/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
87
  frogml_cli/commands/feature_store/pause/ui.py,sha256=15hiiYLilShNdV7B04UVPKBk8vncwKpRPQghQIA1cRw,721
88
88
  frogml_cli/commands/feature_store/register/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
- frogml_cli/commands/feature_store/register/_logic.py,sha256=kW8dH1TuAhP1WdxF4r9YpV10v-dQIlD-kn3Yytuv0Tc,13563
90
- frogml_cli/commands/feature_store/register/ui.py,sha256=OWZDl12nkPuilhOfATVRwHXMQMuu4l5eTjqLPx_WzJc,3028
89
+ frogml_cli/commands/feature_store/register/_logic.py,sha256=P5GvzOw34SQOn6J5fPOZHgqaxdhgfO1YdphjwMvcDWs,13605
90
+ frogml_cli/commands/feature_store/register/ui.py,sha256=-N7Ie_rHXPooCIeScltbbhY0CrZYH7Xbw37IDkSUIHA,3044
91
91
  frogml_cli/commands/feature_store/resume/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
92
  frogml_cli/commands/feature_store/resume/ui.py,sha256=RFWY9vYHudMoUBdnwkMsfm0LSJLN4LrOt629fnwQBJY,726
93
93
  frogml_cli/commands/feature_store/trigger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -97,9 +97,9 @@ frogml_cli/commands/models/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
97
97
  frogml_cli/commands/models/build/_logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
98
  frogml_cli/commands/models/build/_logic/build_steps.py,sha256=-4fI7f0i6VnewCo2VyH9EMqoQUFf1g0E2bX3haBuuSY,1569
99
99
  frogml_cli/commands/models/build/_logic/client_logs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
- frogml_cli/commands/models/build/_logic/client_logs/cli_phase_run_handler.py,sha256=WjAL6bydy9CJw6cyQJr9TSQQrEbtfwyhc3_CBFFcuAQ,4712
100
+ frogml_cli/commands/models/build/_logic/client_logs/cli_phase_run_handler.py,sha256=JfGQQ3MxNfrC2Pw2-pAYm7u1fs3Rqc44aufzijJmG7E,4715
101
101
  frogml_cli/commands/models/build/_logic/client_logs/cli_trigger_build_logger.py,sha256=L69_KKRzae1iaX0dgjbdUpzIstMN6Tte_hZWUr0MO6Y,733
102
- frogml_cli/commands/models/build/_logic/client_logs/logger.py,sha256=HWM0Z9fp5E8BbLEzF3lJB2u3yVOWbiQeE8Y94Va0iXo,2933
102
+ frogml_cli/commands/models/build/_logic/client_logs/logger.py,sha256=iMmtcDRM-FU5eGCynYVc4r3FiNcbyxvdrcd-uFNdDJM,2939
103
103
  frogml_cli/commands/models/build/_logic/client_logs/messages.py,sha256=_3f1TPmfmYyxZPD3mlZWTY2MKdgaINDzi70njVJOwOA,1048
104
104
  frogml_cli/commands/models/build/_logic/client_logs/spinner.py,sha256=iph1eVC7QtSzNobNP2j_x0DC2k7bbka9eT8rcBpZGeQ,359
105
105
  frogml_cli/commands/models/build/_logic/client_logs/trigger_build_logger.py,sha256=BpRbMdvPLsVOyp7t6eSRcAhS7GyIv4W8VN3Uts5jU20,1635
@@ -113,7 +113,7 @@ frogml_cli/commands/models/build/_logic/phase/c_deploy/build_polling_status.py,s
113
113
  frogml_cli/commands/models/build/_logic/phase/c_deploy/deploy_build.py,sha256=uyK7SHzsdTOZ7uqa4RTZzvQAT6w9rcP8WNxF-WLAM7I,2332
114
114
  frogml_cli/commands/models/build/_logic/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
115
  frogml_cli/commands/models/build/_logic/util/protobuf_factory.py,sha256=gO9LgChpt0Qyc_3UXt2RhdRJ4jqf_9NkkH6t13bmREE,1699
116
- frogml_cli/commands/models/build/_logic/util/step_decorator.py,sha256=T-vKF824iNGSg0kHrwXFtMHpmLfYLNje3gsuo4i4BL8,1934
116
+ frogml_cli/commands/models/build/_logic/util/step_decorator.py,sha256=0IgG0XMtIdLftsInwTumg2afAXzQyjVhXAWoJ7jrDfI,1936
117
117
  frogml_cli/commands/models/build/_logic/util/text.py,sha256=tH-v19Mt8l90sMVxku5XRtrderT0qdRqJ-jLijqannA,188
118
118
  frogml_cli/commands/models/build/_logic/wait_until_finished.py,sha256=hhIFrY2onNvuwOvek06Zpj9RhuCj2sChLfY83BaQkgY,1229
119
119
  frogml_cli/commands/models/build/ui.py,sha256=o9oBQ0ZW-pPX8AxJ8DDKyGsLFbmxHIztdm8LR6yO9Ko,9998
@@ -144,7 +144,7 @@ frogml_cli/commands/models/deployments/deploy/_logic/deployment_message_helpers.
144
144
  frogml_cli/commands/models/deployments/deploy/_logic/deployment_response_handler.py,sha256=7uNy9aoWJzTBYIcX7fPdmcvtQS2TBL4c3BdEXPv0D1I,5888
145
145
  frogml_cli/commands/models/deployments/deploy/_logic/deployment_size_mapper.py,sha256=Xz4yd4cJzUT_R_PXfZEYVo9xG9Qxw68PhgYUo0HlDZc,3711
146
146
  frogml_cli/commands/models/deployments/deploy/_logic/get_latest_successful_build.py,sha256=MnDB92MCVuF1_F3lcBk6-16KnHsBOpU3_wXJmjxxTHE,1007
147
- frogml_cli/commands/models/deployments/deploy/_logic/local_deployment.py,sha256=L38LQ7yhfaa611JaZqa48RW28WfuKm3XBr2hi2PzEmA,6321
147
+ frogml_cli/commands/models/deployments/deploy/_logic/local_deployment.py,sha256=MDpWioGszN2aPTswfxYZIS2fNA2R8ZaQmpEVWyTLkxs,6323
148
148
  frogml_cli/commands/models/deployments/deploy/batch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
149
  frogml_cli/commands/models/deployments/deploy/batch/_logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
150
  frogml_cli/commands/models/deployments/deploy/batch/_logic/advanced_deployment_mapper.py,sha256=O9X7ywSXaEu2T8fNe2ckefX4j_EXKrYA4mRDkn7YXks,603
@@ -230,7 +230,7 @@ frogml_cli/commands/models/init/_logic/template/titanic_poetry/{{cookiecutter.mo
230
230
  frogml_cli/commands/models/init/_logic/template/titanic_poetry/{{cookiecutter.model_directory}}/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
231
231
  frogml_cli/commands/models/init/_logic/template/titanic_poetry/{{cookiecutter.model_directory}}/tests/it/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
232
  frogml_cli/commands/models/init/_logic/template/titanic_poetry/{{cookiecutter.model_directory}}/tests/it/test_titanic.py,sha256=A75drbpCH-wNYwGZHS16xFBN7aApYbA7w_G1Hc2BwkU,761
233
- frogml_cli/commands/models/init/ui.py,sha256=p2VIxouKmaUraYD_wkdgLPeZmNGVG6p-uxoywz4r9iA,2063
233
+ frogml_cli/commands/models/init/ui.py,sha256=3Bg7sP76l5d9kMYp3jLRQ0rJ-zhmRcjc1N6d7e2aH98,2089
234
234
  frogml_cli/commands/models/list/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
235
235
  frogml_cli/commands/models/list/_logic.py,sha256=JLl4_r44ZqMZQgruwgKLPoj-kdk7a6LEc3WQVLlQ-Sk,314
236
236
  frogml_cli/commands/models/list/ui.py,sha256=W4JvjYO7hVshbMpL4u8OhNuXldngS2dBZRezi8VNJ2s,1641
@@ -265,7 +265,7 @@ frogml_cli/exceptions/frogml_command_exception.py,sha256=SkIvr-5EEmqJRCRZva0pcrp
265
265
  frogml_cli/exceptions/frogml_deploy_new_build_failed.py,sha256=V_NMAwT_WAC9vJ5OUlDxWV-hvSfykCijkyYCGbPeLWs,142
266
266
  frogml_cli/exceptions/frogml_resource_not_found.py,sha256=ckAS6vCn148gLnZi12ZpzXh2qv04V1u5NW8oineD29w,50
267
267
  frogml_cli/inner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
268
- frogml_cli/inner/file_registry.py,sha256=DtF37I6LVzi-HQGSh7VgMt8pCsBp_0kwnDZWzyHgL7M,3224
268
+ frogml_cli/inner/file_registry.py,sha256=ObBLf8eK__fS8E6aDrUnswcq4HTM4O_eptXvDWOugUo,3226
269
269
  frogml_cli/inner/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
270
270
  frogml_cli/inner/tools/cli_tools.py,sha256=bMxS0qy7garLNKe36ZkgA8lkSCPTsV8UMXu3A9OL2HA,5568
271
271
  frogml_cli/inner/tools/config_handler.py,sha256=tDsnx0GC6TSd4_7VA1gpK2nDcy2A3Ln_fQRlQ3qBVWg,917
@@ -281,7 +281,7 @@ frogml_cli/tools/const.py,sha256=XDaMAVfScXoFc5fHbsNuqAefUD2MoZY-cAEMoh1xaYk,152
281
281
  frogml_cli/tools/files.py,sha256=AyKJTOy7NhvP3SrqwIw_lxYNCOy1CvLgMmSJpWZ0OKM,2257
282
282
  frogml_cli/tools/log_handling.py,sha256=QlgxbCmLLPK4wRyViWgAW8WLZ39Do1hYAvRyFWGbnFs,6362
283
283
  frogml_cli/tools/utils.py,sha256=Vliw-w6i-93dgZ3M09EgWjttHMuhT-3CH7tbWVKsf8s,1668
284
- frogml_cli-0.0.4.dist-info/METADATA,sha256=BSxG6KpM-kCM7SEFdUFzmfoydNnMRXTcb1n7LJQI4Vg,2202
285
- frogml_cli-0.0.4.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
286
- frogml_cli-0.0.4.dist-info/entry_points.txt,sha256=2H5x0V_E73HeywIMBRRvZMgeRtmX5820KmSLiNFzDcA,53
287
- frogml_cli-0.0.4.dist-info/RECORD,,
284
+ frogml_cli-0.0.5.dist-info/METADATA,sha256=zmDTRa_iV6WQW9LtmKazUMebwCUjkJUJ1fsLT-R-ZB8,2202
285
+ frogml_cli-0.0.5.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
286
+ frogml_cli-0.0.5.dist-info/entry_points.txt,sha256=2H5x0V_E73HeywIMBRRvZMgeRtmX5820KmSLiNFzDcA,53
287
+ frogml_cli-0.0.5.dist-info/RECORD,,