bluer-objects 6.35.1__py3-none-any.whl → 6.37.1__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 bluer-objects might be problematic. Click here for more details.

Files changed (41) hide show
  1. bluer_objects/.abcli/alias.sh +7 -7
  2. bluer_objects/.abcli/clone.sh +2 -2
  3. bluer_objects/.abcli/gif.sh +1 -1
  4. bluer_objects/.abcli/host.sh +1 -1
  5. bluer_objects/.abcli/mlflow/browse.sh +3 -3
  6. bluer_objects/.abcli/mlflow/cache.sh +3 -3
  7. bluer_objects/.abcli/mlflow/list_registered_models.sh +1 -1
  8. bluer_objects/.abcli/mlflow/log_artifacts.sh +1 -1
  9. bluer_objects/.abcli/mlflow/log_run.sh +1 -1
  10. bluer_objects/.abcli/mlflow/run.sh +1 -1
  11. bluer_objects/.abcli/mlflow/tags/clone.sh +1 -1
  12. bluer_objects/.abcli/mlflow/tags/get.sh +1 -1
  13. bluer_objects/.abcli/mlflow/tags/search.sh +1 -1
  14. bluer_objects/.abcli/mlflow/tags/set.sh +1 -1
  15. bluer_objects/.abcli/mlflow/tags.sh +2 -2
  16. bluer_objects/.abcli/mlflow/test.sh +1 -1
  17. bluer_objects/.abcli/mlflow/transition.sh +1 -1
  18. bluer_objects/.abcli/mlflow.sh +2 -2
  19. bluer_objects/.abcli/publish.sh +1 -1
  20. bluer_objects/.abcli/tests/gif.sh +1 -1
  21. bluer_objects/.abcli/tests/help.sh +0 -3
  22. bluer_objects/.abcli/tests/host.sh +1 -1
  23. bluer_objects/.abcli/tests/mlflow_cache.sh +2 -2
  24. bluer_objects/.abcli/tests/mlflow_logging.sh +2 -2
  25. bluer_objects/.abcli/tests/mlflow_tags.sh +4 -4
  26. bluer_objects/.abcli/tests/mlflow_test.sh +1 -1
  27. bluer_objects/.abcli/upload.sh +1 -1
  28. bluer_objects/__init__.py +1 -1
  29. bluer_objects/help/assets.py +38 -0
  30. bluer_objects/help/functions.py +8 -0
  31. bluer_objects/help/gif.py +28 -0
  32. bluer_objects/help/host.py +61 -0
  33. bluer_objects/help/mlflow/__init__.py +194 -0
  34. bluer_objects/help/mlflow/cache.py +42 -0
  35. bluer_objects/help/mlflow/tags.py +119 -0
  36. {bluer_objects-6.35.1.dist-info → bluer_objects-6.37.1.dist-info}/METADATA +2 -2
  37. {bluer_objects-6.35.1.dist-info → bluer_objects-6.37.1.dist-info}/RECORD +40 -35
  38. bluer_objects/.abcli/cache.sh +0 -5
  39. {bluer_objects-6.35.1.dist-info → bluer_objects-6.37.1.dist-info}/WHEEL +0 -0
  40. {bluer_objects-6.35.1.dist-info → bluer_objects-6.37.1.dist-info}/licenses/LICENSE +0 -0
  41. {bluer_objects-6.35.1.dist-info → bluer_objects-6.37.1.dist-info}/top_level.txt +0 -0
@@ -4,26 +4,26 @@ alias @ai=bluer_ai
4
4
 
5
5
  alias @download=bluer_objects_download
6
6
 
7
- alias @gif=abcli_gif
7
+ alias @gif=bluer_objects_gif
8
8
 
9
- alias @assets=abcli_assets
9
+ alias @assets=bluer_objects_assets
10
10
 
11
- alias @cache=abcli_cache
12
- alias @ref="abcli_cache read"
13
- alias @tags=abcli_mlflow_tags
11
+ alias @cache=bluer_objects_mlflow_cache
12
+ alias @ref="bluer_objects_mlflow_cache read"
13
+ alias @tags=bluer_objects_mlflow_tags
14
14
 
15
15
  alias @clone=bluer_objects_clone
16
16
  alias @cp=bluer_objects_clone
17
17
 
18
18
  alias @file=bluer_objects_file
19
19
 
20
- alias @host=abcli_host
20
+ alias @host=bluer_objects_host
21
21
 
22
22
  alias @ls=bluer_ai_ls
23
23
 
24
24
  alias @metadata=bluer_objects_metadata
25
25
 
26
- alias @mlflow=abcli_mlflow
26
+ alias @mlflow=bluer_objects_mlflow
27
27
 
28
28
  alias @mysql=abcli_mysql
29
29
 
@@ -36,12 +36,12 @@ function bluer_objects_clone() {
36
36
  fi
37
37
 
38
38
  [[ "$clone_tags" == 1 ]] &&
39
- abcli_mlflow_tags clone \
39
+ bluer_objects_mlflow_tags clone \
40
40
  $object_1_name \
41
41
  $object_2_name
42
42
 
43
43
  [[ "$do_relate" == 1 ]] &&
44
- abcli_mlflow_tags set \
44
+ bluer_objects_mlflow_tags set \
45
45
  $object_2_name \
46
46
  cloned.$object_1_name
47
47
 
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_gif() {
3
+ function bluer_objects_gif() {
4
4
  local options=$1
5
5
  local do_dryrun=$(abcli_option_int "$options" dryrun 0)
6
6
  local do_download=$(abcli_option_int "$options" download $(abcli_not $do_dryrun))
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_host() {
3
+ function bluer_objects_host() {
4
4
  local task=$1
5
5
  local options=$2
6
6
 
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_browse() {
3
+ function bluer_objects_mlflow_browse() {
4
4
  local options=$1
5
5
  local browse_experiment=$(abcli_option_int "$options" experiment 0)
6
6
 
@@ -15,7 +15,7 @@ function abcli_mlflow_browse() {
15
15
  else
16
16
  local object_name=$(abcli_clarify_object $2 .)
17
17
 
18
- local experiment_id=$(abcli_mlflow get_id $object_name)
18
+ local experiment_id=$(bluer_objects_mlflow get_id $object_name)
19
19
  if [ -z "$experiment_id" ]; then
20
20
  abcli_log_error "@mlflow: browse: $object_name: object not found."
21
21
  return 1
@@ -25,7 +25,7 @@ function abcli_mlflow_browse() {
25
25
  url="$url/experiments/$experiment_id"
26
26
 
27
27
  if [[ "$browse_experiment" == 0 ]]; then
28
- local last_run_id=$(abcli_mlflow get_run_id $object_name --count 1)
28
+ local last_run_id=$(bluer_objects_mlflow get_run_id $object_name --count 1)
29
29
  abcli_log "last run id: $last_run_id"
30
30
 
31
31
  url="$url/runs/$last_run_id"
@@ -1,13 +1,13 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_cache() {
3
+ function bluer_objects_mlflow_cache() {
4
4
  local task=$1
5
5
 
6
6
  local keyword=$2
7
7
 
8
8
  if [ "$task" == "read" ]; then
9
9
 
10
- abcli_mlflow_tags get \
10
+ bluer_objects_mlflow_tags get \
11
11
  $keyword \
12
12
  --tag referent \
13
13
  "${@:3}"
@@ -18,7 +18,7 @@ function abcli_mlflow_cache() {
18
18
  if [ "$task" == "write" ]; then
19
19
  local value=$3
20
20
 
21
- abcli_mlflow_tags set \
21
+ bluer_objects_mlflow_tags set \
22
22
  $keyword \
23
23
  referent=$value \
24
24
  "${@:4}"
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_list_registered_models() {
3
+ function bluer_objects_mlflow_list_registered_models() {
4
4
  local options=$1
5
5
 
6
6
  python3 -m bluer_objects.mlflow \
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_log_artifacts() {
3
+ function bluer_objects_mlflow_log_artifacts() {
4
4
  local object_name=$(abcli_clarify_object $1 .)
5
5
 
6
6
  python3 -m bluer_objects.mlflow \
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_log_run() {
3
+ function bluer_objects_mlflow_log_run() {
4
4
  local object_name=$(abcli_clarify_object $1 .)
5
5
 
6
6
  python3 -m bluer_objects.mlflow \
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_run() {
3
+ function bluer_objects_mlflow_run() {
4
4
  local object_name=$(abcli_clarify_object $1 .)
5
5
 
6
6
  python3 -m bluer_objects.mlflow \
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_tags_clone() {
3
+ function bluer_objects_mlflow_tags_clone() {
4
4
  local source_object=$(abcli_clarify_object $1 ..)
5
5
 
6
6
  local destination_object=$(abcli_clarify_object $2 .)
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_tags_get() {
3
+ function bluer_objects_mlflow_tags_get() {
4
4
  local object_name=$(abcli_clarify_object $1 .)
5
5
 
6
6
  python3 -m bluer_objects.mlflow \
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_tags_search() {
3
+ function bluer_objects_mlflow_tags_search() {
4
4
  local options=$1
5
5
  local is_explicit=$(abcli_option_int "$options" explicit 0)
6
6
 
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_tags_set() {
3
+ function bluer_objects_mlflow_tags_set() {
4
4
  local object_name=$(abcli_clarify_object $1 .)
5
5
 
6
6
  local tags=$2
@@ -1,9 +1,9 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_tags() {
3
+ function bluer_objects_mlflow_tags() {
4
4
  local task=$1
5
5
 
6
- local function_name=abcli_mlflow_tags_$task
6
+ local function_name=bluer_objects_mlflow_tags_$task
7
7
  if [[ $(type -t $function_name) == "function" ]]; then
8
8
  $function_name "${@:2}"
9
9
  return
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- function abcli_mlflow_test() {
3
+ function bluer_objects_mlflow_test() {
4
4
  local options=$1
5
5
  local do_dryrun=$(abcli_option_int "$options" dryrun 0)
6
6
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  export ABCLI_MLFLOW_STAGES="Staging|Production|Archived"
4
4
 
5
- function abcli_mlflow_transition() {
5
+ function bluer_objects_mlflow_transition() {
6
6
  local options=$1
7
7
  local model_name=$(abcli_option "$options" model)
8
8
  local stage_name=$(abcli_option_choice "$options" $(echo $ABCLI_MLFLOW_STAGES | tr \| ,) Staging)
@@ -2,10 +2,10 @@
2
2
 
3
3
  export MLFLOW_TRACKING_URI=$HOME/mlruns
4
4
 
5
- function abcli_mlflow() {
5
+ function bluer_objects_mlflow() {
6
6
  local task=$1
7
7
 
8
- local function_name=abcli_mlflow_$task
8
+ local function_name=bluer_objects_mlflow_$task
9
9
  if [[ $(type -t $function_name) == "function" ]]; then
10
10
  $function_name "${@:2}"
11
11
  return
@@ -11,7 +11,7 @@ function bluer_ai_publish() {
11
11
  [[ "$do_download" == 1 ]] &&
12
12
  bluer_objects_download - $object_name
13
13
 
14
- abcli_mlflow_tags set $object_name published
14
+ bluer_objects_mlflow_tags set $object_name published
15
15
 
16
16
  local public_object_name=$(abcli_option "$options" as $object_name)
17
17
 
@@ -10,7 +10,7 @@ function test_bluer_objects_gif() {
10
10
  --object_name $source_object_name
11
11
  [[ $? -ne 0 ]] && return 1
12
12
 
13
- abcli_gif \
13
+ bluer_objects_gif \
14
14
  ~upload,$options \
15
15
  $source_object_name \
16
16
  --frame_duration 200 \
@@ -58,9 +58,6 @@ function test_bluer_objects_help() {
58
58
  "@mlflow test" \
59
59
  "@mlflow transition" \
60
60
  \
61
- "@object" \
62
- "@object open" \
63
- \
64
61
  "@publish" \
65
62
  \
66
63
  "@select" \
@@ -2,6 +2,6 @@
2
2
 
3
3
  function test_bluer_objects_host() {
4
4
  abcli_assert \
5
- $(abcli_host get name) \
5
+ $(bluer_objects_host get name) \
6
6
  - non-empty
7
7
  }
@@ -4,11 +4,11 @@ function test_bluer_objects_mlflow_cache() {
4
4
  local keyword="test-keyword-$(abcli_string_timestamp_short)"
5
5
  local value="test-value-$(abcli_string_timestamp_short)"
6
6
 
7
- abcli mlflow cache write \
7
+ bluer_objects_mlflow cache write \
8
8
  $keyword $value
9
9
  [[ $? -ne 0 ]] && return 1
10
10
 
11
11
  abcli_assert \
12
- $(abcli mlflow cache read $keyword) \
12
+ $(bluer_objects_mlflow cache read $keyword) \
13
13
  $value
14
14
  }
@@ -3,10 +3,10 @@
3
3
  function test_bluer_objects_mlflow_logging() {
4
4
  local object_name="test-object-$(abcli_string_timestamp_short)"
5
5
 
6
- abcli clone \
6
+ bluer_objects_clone \
7
7
  upload \
8
8
  vanwatch-mlflow-validation-2024-09-23-10673 \
9
9
  "$object_name"
10
10
 
11
- abcli_mlflow rm $object_name
11
+ bluer_objects_mlflow rm $object_name
12
12
  }
@@ -5,25 +5,25 @@ function test_bluer_objects_mlflow_tags_validation() {
5
5
  local tag="test-tag-$(abcli_string_timestamp_short)"
6
6
  local value="test-value-$(abcli_string_timestamp_short)"
7
7
 
8
- abcli mlflow tags set \
8
+ bluer_objects_mlflow tags set \
9
9
  $object_name \
10
10
  $tag=$value
11
11
  [[ $? -ne 0 ]] && return 1
12
12
 
13
13
  abcli_assert \
14
- "$(abcli mlflow tags get $object_name --tag $tag)" \
14
+ "$(bluer_objects_mlflow tags get $object_name --tag $tag)" \
15
15
  $value
16
16
  [[ $? -ne 0 ]] && return 1
17
17
 
18
18
  abcli_assert \
19
- "$(abcli mlflow tags get $object_name --tag some-tag)" \
19
+ "$(bluer_objects_mlflow tags get $object_name --tag some-tag)" \
20
20
  - empty
21
21
  }
22
22
 
23
23
  function test_bluer_objects_mlflow_tags_search() {
24
24
  local options=$1
25
25
 
26
- abcli_mlflow_tags search \
26
+ bluer_objects_mlflow_tags search \
27
27
  cloned.firms_area-template-v1=True \
28
28
  --log 0
29
29
  }
@@ -3,5 +3,5 @@
3
3
  function test_bluer_objects_mlflow_test() {
4
4
  local options=$1
5
5
 
6
- abcli_mlflow_test "$@"
6
+ bluer_objects_mlflow_test "$@"
7
7
  }
@@ -16,6 +16,6 @@ function bluer_objects_upload() {
16
16
  [[ $? -ne 0 ]] && return 1
17
17
 
18
18
  if [[ -z "$filename" ]]; then
19
- abcli_mlflow_log_run $object_name
19
+ bluer_objects_mlflow_log_run $object_name
20
20
  fi
21
21
  }
bluer_objects/__init__.py CHANGED
@@ -4,7 +4,7 @@ ICON = "🌀"
4
4
 
5
5
  DESCRIPTION = f"{ICON} data objects for Bash."
6
6
 
7
- VERSION = "6.35.1"
7
+ VERSION = "6.37.1"
8
8
 
9
9
  REPO_NAME = "bluer-objects"
10
10
 
@@ -0,0 +1,38 @@
1
+ from typing import List
2
+
3
+ from bluer_options.terminal import show_usage, xtra
4
+
5
+
6
+ def help_publish(
7
+ tokens: List[str],
8
+ mono: bool,
9
+ ) -> str:
10
+ options = "".join(
11
+ [
12
+ xtra("download,", mono=mono),
13
+ "extensions=png+geojson",
14
+ xtra(",~pull,", mono=mono),
15
+ "push",
16
+ ]
17
+ )
18
+
19
+ args = [
20
+ "[--prefix <prefix>]",
21
+ ]
22
+
23
+ return show_usage(
24
+ [
25
+ "@assets",
26
+ "publish",
27
+ f"[{options}]",
28
+ "[.|<object-name>]",
29
+ ]
30
+ + args,
31
+ "<object-name>/<prefix> -> assets.",
32
+ mono=mono,
33
+ )
34
+
35
+
36
+ help_functions = {
37
+ "publish": help_publish,
38
+ }
@@ -1,18 +1,26 @@
1
1
  from bluer_ai.help.generic import help_functions as generic_help_functions
2
2
 
3
3
  from bluer_objects import ALIAS
4
+ from bluer_objects.help.assets import help_functions as help_assets
4
5
  from bluer_objects.help.clone import help_clone
5
6
  from bluer_objects.help.download import help_download
7
+ from bluer_objects.help.gif import help_gif
8
+ from bluer_objects.help.host import help_functions as help_host
6
9
  from bluer_objects.help.metadata import help_functions as help_metadata
10
+ from bluer_objects.help.mlflow import help_functions as help_mlflow
7
11
  from bluer_objects.help.upload import help_upload
8
12
 
9
13
  help_functions = generic_help_functions(plugin_name=ALIAS)
10
14
 
11
15
  help_functions.update(
12
16
  {
17
+ "assets": help_assets,
13
18
  "clone": help_clone,
14
19
  "download": help_download,
20
+ "gif": help_gif,
21
+ "host": help_host,
15
22
  "metadata": help_metadata,
23
+ "mlflow": help_mlflow,
16
24
  "upload": help_upload,
17
25
  }
18
26
  )
@@ -0,0 +1,28 @@
1
+ from typing import List
2
+
3
+ from bluer_options.terminal import show_usage, xtra
4
+
5
+
6
+ def help_gif(
7
+ tokens: List[str],
8
+ mono: bool,
9
+ ) -> str:
10
+ options = xtra("~download,dryrun,~upload", mono=mono)
11
+
12
+ args = [
13
+ "[--frame_duration <150>]",
14
+ "[--output_filename <object-name>.gif]",
15
+ "[--scale <1>]",
16
+ "[--suffix <.png>]",
17
+ ]
18
+
19
+ return show_usage(
20
+ [
21
+ "@gif",
22
+ f"[{options}]",
23
+ "[.|<object-name>]",
24
+ ]
25
+ + args,
26
+ "generate <object-name>.gif.",
27
+ mono=mono,
28
+ )
@@ -0,0 +1,61 @@
1
+ from typing import List
2
+
3
+ from bluer_options.terminal import show_usage, xtra
4
+
5
+
6
+ def help_get(
7
+ tokens: List[str],
8
+ mono: bool,
9
+ ) -> str:
10
+ options = "name"
11
+
12
+ return show_usage(
13
+ [
14
+ "@host",
15
+ "get",
16
+ f"[{options}]",
17
+ ],
18
+ "get $abcli_host_name.",
19
+ mono=mono,
20
+ )
21
+
22
+
23
+ def help_reboot(
24
+ tokens: List[str],
25
+ mono: bool,
26
+ ) -> str:
27
+ options = xtra("dryrun", mono=mono)
28
+
29
+ return show_usage(
30
+ [
31
+ "@host",
32
+ "reboot",
33
+ f"[{options}]",
34
+ ],
35
+ "reboot host.",
36
+ mono=mono,
37
+ )
38
+
39
+
40
+ def help_shutdown(
41
+ tokens: List[str],
42
+ mono: bool,
43
+ ) -> str:
44
+ options = xtra("dryrun", mono=mono)
45
+
46
+ return show_usage(
47
+ [
48
+ "@host",
49
+ "shutdown",
50
+ f"[{options}]",
51
+ ],
52
+ "shutdown host.",
53
+ mono=mono,
54
+ )
55
+
56
+
57
+ help_functions = {
58
+ "get": help_get,
59
+ "reboot": help_reboot,
60
+ "shutdown": help_shutdown,
61
+ }
@@ -0,0 +1,194 @@
1
+ from typing import List
2
+
3
+ from bluer_options.terminal import show_usage, xtra
4
+
5
+ from bluer_objects.help.mlflow.cache import help_functions as help_cache
6
+ from bluer_objects.help.mlflow.tags import help_functions as help_tags
7
+ from bluer_ai import env
8
+
9
+
10
+ def help_browse(
11
+ tokens: List[str],
12
+ mono: bool,
13
+ ) -> str:
14
+ options = "databricks,experiment,host,models"
15
+
16
+ return show_usage(
17
+ [
18
+ "@mlflow",
19
+ "browse",
20
+ f"[{options}]",
21
+ "[.|<object-name>]",
22
+ ],
23
+ "browse mlflow.",
24
+ mono=mono,
25
+ )
26
+
27
+
28
+ def help_get_id(
29
+ tokens: List[str],
30
+ mono: bool,
31
+ ) -> str:
32
+ return show_usage(
33
+ [
34
+ "@mlflow",
35
+ "get_id",
36
+ "[.|<object-name>]",
37
+ ],
38
+ "get mlflow id for <object-name>.",
39
+ mono=mono,
40
+ )
41
+
42
+
43
+ def help_get_run_id(
44
+ tokens: List[str],
45
+ mono: bool,
46
+ ) -> str:
47
+ args = [
48
+ "[--count <1>]",
49
+ "[--delim <space>]",
50
+ "[--offset <0>]",
51
+ ]
52
+
53
+ return show_usage(
54
+ [
55
+ "@mlflow",
56
+ "get_run_id",
57
+ "[.|<object-name>]",
58
+ ]
59
+ + args,
60
+ "get mlflow run ids for <object-name>.",
61
+ mono=mono,
62
+ )
63
+
64
+
65
+ def help_list_registered_models(
66
+ tokens: List[str],
67
+ mono: bool,
68
+ ) -> str:
69
+ return show_usage(
70
+ [
71
+ "@mlflow",
72
+ "list_registered_models",
73
+ ],
74
+ "list mlflow registered models.",
75
+ mono=mono,
76
+ )
77
+
78
+
79
+ def help_log_artifacts(
80
+ tokens: List[str],
81
+ mono: bool,
82
+ ) -> str:
83
+ args = ["[--model_name <model-name>]"]
84
+
85
+ return show_usage(
86
+ [
87
+ "@mlflow",
88
+ "log_artifacts",
89
+ "[.|<object-name>]",
90
+ ]
91
+ + args,
92
+ "<object-name> -artifacts-> mlflow.",
93
+ mono=mono,
94
+ )
95
+
96
+
97
+ def help_log_run(
98
+ tokens: List[str],
99
+ mono: bool,
100
+ ) -> str:
101
+ return show_usage(
102
+ [
103
+ "@mlflow",
104
+ "log_run",
105
+ "[.|<object-name>]",
106
+ ],
107
+ "<object-name> -run-> mlflow.",
108
+ mono=mono,
109
+ )
110
+
111
+
112
+ def help_rm(
113
+ tokens: List[str],
114
+ mono: bool,
115
+ ) -> str:
116
+ return show_usage(
117
+ [
118
+ "@mlflow",
119
+ "rm",
120
+ "[.|<object-name>]",
121
+ ],
122
+ "rm <object-name> from mlflow.",
123
+ mono=mono,
124
+ )
125
+
126
+
127
+ def help_run(
128
+ tokens: List[str],
129
+ mono: bool,
130
+ ) -> str:
131
+ return show_usage(
132
+ [
133
+ "@mlflow",
134
+ "run",
135
+ "start | end",
136
+ "[.|<object-name>]",
137
+ ],
138
+ "start | end mlflow run.",
139
+ mono=mono,
140
+ )
141
+
142
+
143
+ def help_test(
144
+ tokens: List[str],
145
+ mono: bool,
146
+ ) -> str:
147
+ options = xtra("dryrun", mono=mono)
148
+
149
+ return show_usage(
150
+ [
151
+ "@mlflow",
152
+ "test",
153
+ f"[{options}]",
154
+ ],
155
+ "test mlflow.",
156
+ mono=mono,
157
+ )
158
+
159
+
160
+ def help_transition(
161
+ tokens: List[str],
162
+ mono: bool,
163
+ ) -> str:
164
+ options = "model=<model-name>,stage=<stage>,version=<version>"
165
+
166
+ return show_usage(
167
+ [
168
+ "@mlflow",
169
+ "transition",
170
+ f"[{options}]",
171
+ "[<description>]",
172
+ ],
173
+ "transition <model-name>.",
174
+ {
175
+ "stage: {}".format(" | ".join(env.ABCLI_MLFLOW_STAGES.split("|"))): "",
176
+ },
177
+ mono=mono,
178
+ )
179
+
180
+
181
+ help_functions = {
182
+ "browse": help_browse,
183
+ "cache": help_cache,
184
+ "get_id": help_get_id,
185
+ "get_run_id": help_get_run_id,
186
+ "list_registered_models": help_list_registered_models,
187
+ "log_artifacts": help_log_artifacts,
188
+ "log_run": help_log_run,
189
+ "rm": help_rm,
190
+ "run": help_run,
191
+ "tags": help_tags,
192
+ "test": help_test,
193
+ "transition": help_transition,
194
+ }
@@ -0,0 +1,42 @@
1
+ from typing import List
2
+
3
+ from bluer_options.terminal import show_usage
4
+
5
+
6
+ def help_read(
7
+ tokens: List[str],
8
+ mono: bool,
9
+ ) -> str:
10
+ return show_usage(
11
+ [
12
+ "@mlflow",
13
+ "cache",
14
+ "read",
15
+ "<keyword>",
16
+ ],
17
+ "read mlflow.cache[<keyword>].",
18
+ mono=mono,
19
+ )
20
+
21
+
22
+ def help_write(
23
+ tokens: List[str],
24
+ mono: bool,
25
+ ) -> str:
26
+ return show_usage(
27
+ [
28
+ "@mlflow",
29
+ "cache",
30
+ "write",
31
+ "<keyword>",
32
+ "<value>",
33
+ ],
34
+ "write mlflow.cache[<keyword>]=value.",
35
+ mono=mono,
36
+ )
37
+
38
+
39
+ help_functions = {
40
+ "read": help_read,
41
+ "write": help_write,
42
+ }
@@ -0,0 +1,119 @@
1
+ from typing import List
2
+
3
+ from bluer_options.terminal import show_usage, xtra
4
+
5
+ search_args = [
6
+ "[--count <-1>]",
7
+ "[--delim <space>]",
8
+ "[--log <0>]",
9
+ "[--offset <0>]",
10
+ ]
11
+
12
+
13
+ def help_clone(
14
+ tokens: List[str],
15
+ mono: bool,
16
+ ) -> str:
17
+ return show_usage(
18
+ [
19
+ "@mlflow",
20
+ "tags",
21
+ "clone",
22
+ "[..|<object-1>]",
23
+ "[.|<object-2>]",
24
+ ],
25
+ "clone mlflow tags.",
26
+ mono=mono,
27
+ )
28
+
29
+
30
+ def help_get(
31
+ tokens: List[str],
32
+ mono: bool,
33
+ ) -> str:
34
+ args = ["[--tag <tag>]"]
35
+
36
+ return show_usage(
37
+ [
38
+ "@mlflow",
39
+ "tags",
40
+ "get",
41
+ "[.|<object-name>]",
42
+ ]
43
+ + args,
44
+ "get mlflow tags|<tag> for <object-name>.",
45
+ mono=mono,
46
+ )
47
+
48
+
49
+ def help_search(
50
+ tokens: List[str],
51
+ mono: bool,
52
+ ) -> str:
53
+ options = "explicit"
54
+
55
+ usage_1 = show_usage(
56
+ [
57
+ "@mlflow",
58
+ "tags",
59
+ "search",
60
+ f"[{options}]",
61
+ ]
62
+ + search_args
63
+ + ["[--filter_string <filter-string>]"],
64
+ "search mlflow for <filter-string>",
65
+ {
66
+ "<finter-string>: https://www.mlflow.org/docs/latest/search-experiments.html": ""
67
+ },
68
+ mono=mono,
69
+ )
70
+
71
+ # ---
72
+
73
+ options = "<keyword-1>=<value-1>,<keyword-2>,~<keyword-3>"
74
+
75
+ usage_2 = show_usage(
76
+ [
77
+ "@mlflow",
78
+ "tags",
79
+ "search",
80
+ f"[{options}]",
81
+ ]
82
+ + search_args,
83
+ "search mlflow.",
84
+ mono=mono,
85
+ )
86
+
87
+ return "\n".join(
88
+ [
89
+ usage_1,
90
+ usage_2,
91
+ ]
92
+ )
93
+
94
+
95
+ def help_set(
96
+ tokens: List[str],
97
+ mono: bool,
98
+ ) -> str:
99
+ options = "<keyword-1>=<value>,<keyword-2>,~<keyword-3>"
100
+
101
+ return show_usage(
102
+ [
103
+ "@mlflow",
104
+ "tags",
105
+ "set",
106
+ "[.|<object-name>]",
107
+ f"[{options}]",
108
+ ],
109
+ "set tags in mlflow.",
110
+ mono=mono,
111
+ )
112
+
113
+
114
+ help_functions = {
115
+ "clone": help_clone,
116
+ "get": help_get,
117
+ "search": help_search,
118
+ "set": help_set,
119
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bluer_objects
3
- Version: 6.35.1
3
+ Version: 6.37.1
4
4
  Summary: 🌀 data objects for Bash.
5
5
  Home-page: https://github.com/kamangir/bluer-objects
6
6
  Author: Arash Abadpour (Kamangir)
@@ -53,6 +53,6 @@ Also home to [blue README](https://github.com/kamangir/bluer-objects/blob/main/b
53
53
 
54
54
  [![pylint](https://github.com/kamangir/bluer-objects/actions/workflows/pylint.yml/badge.svg)](https://github.com/kamangir/bluer-objects/actions/workflows/pylint.yml) [![pytest](https://github.com/kamangir/bluer-objects/actions/workflows/pytest.yml/badge.svg)](https://github.com/kamangir/bluer-objects/actions/workflows/pytest.yml) [![bashtest](https://github.com/kamangir/bluer-objects/actions/workflows/bashtest.yml/badge.svg)](https://github.com/kamangir/bluer-objects/actions/workflows/bashtest.yml) [![PyPI version](https://img.shields.io/pypi/v/bluer-objects.svg)](https://pypi.org/project/bluer-objects/) [![PyPI - Downloads](https://img.shields.io/pypi/dd/bluer-objects)](https://pypistats.org/packages/bluer-objects)
55
55
 
56
- built by 🌀 [`bluer_options-5.28.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`bluer_objects-6.35.1`](https://github.com/kamangir/bluer-objects).
56
+ built by 🌀 [`bluer_options-5.28.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`bluer_objects-6.37.1`](https://github.com/kamangir/bluer-objects).
57
57
 
58
58
  built by 🌀 [`blueness-3.96.1`](https://github.com/kamangir/blueness).
@@ -1,4 +1,4 @@
1
- bluer_objects/__init__.py,sha256=vGAdU6nl1lUlHeC2Hbpb8H9voYMFyH5JeHneaKdCRAI,310
1
+ bluer_objects/__init__.py,sha256=iqVCLVZywLP6n4z7D2ir1jCAZoiTNwocMgmWomLvt7Y,310
2
2
  bluer_objects/__main__.py,sha256=Yqfov833_hJuRne19WrGhT5DWAPtdffpoMxeSXS7EGw,359
3
3
  bluer_objects/config.env,sha256=TzX3WyJjwEs9V-NzK3FBUyePhb0i2ZoCja-lhDF_xJU,116
4
4
  bluer_objects/env.py,sha256=4g_JNKr1uBh8bg39zXLYOCizlWD9_0fpDUYliNgpmj4,1225
@@ -10,37 +10,36 @@ bluer_objects/urls.py,sha256=paHaYlLMQOI46-EYNch5ohu9Q09BMkF2vvJy1QufrVI,19
10
10
  bluer_objects/.abcli/abcli.sh,sha256=8RDi_vCZfB6JOeGSJWcmmzZv2pS4o-_j250rFYG7Ljc,202
11
11
  bluer_objects/.abcli/actions.sh,sha256=HZI-X5KUy6bXEHmxywfBN1zbHalU0mcTblTQ2HvIfOE,236
12
12
  bluer_objects/.abcli/aka.sh,sha256=odRbw4KZb9Ld7uXny6H2pPi64_5kowKX3s68N6YvRmI,23
13
- bluer_objects/.abcli/alias.sh,sha256=NBUIZWESFHu9kef_9YzsozHdLyw9gBvlC0ea-qFCxLU,584
13
+ bluer_objects/.abcli/alias.sh,sha256=Tgf-Z3Wjae-z860cJHI-DstslxdBu_ZM7S_6kThqOAQ,654
14
14
  bluer_objects/.abcli/bluer_objects.sh,sha256=24qMYZImMHREqtYRFdDwIP_TaRnb9RBtUL836RtZWG0,204
15
- bluer_objects/.abcli/cache.sh,sha256=koMJSyjyQKIzwZ8RmtUEZOSjSRW6MEORSPRXiUdLX6k,77
16
- bluer_objects/.abcli/clone.sh,sha256=emB-TWdDFlwAK_06_oADBLGhhO9nyTocHMGGsK2nrCs,1929
15
+ bluer_objects/.abcli/clone.sh,sha256=8ri9hNdvP8-tjJLJzPxuNcqD8Phv0htMD1-bGsbFUiU,1945
17
16
  bluer_objects/.abcli/download.sh,sha256=eZVG2M6MjEhp4IEhuxYDSiKjEOr84zNUNTKI7xTOpMk,555
18
17
  bluer_objects/.abcli/file.sh,sha256=djcHSFS8fqlCsoDyZKmimNTzd-jOUnxbOFpL7xq_hGk,150
19
- bluer_objects/.abcli/gif.sh,sha256=cSU4rDO_6LWnK1C9fUKpf1Gja8Nn0huIMsk0jhru84M,771
20
- bluer_objects/.abcli/host.sh,sha256=k1fX5qAUKECxtIBmOP6U-CXHbEUEurjZUYlrVIjo7_Q,556
18
+ bluer_objects/.abcli/gif.sh,sha256=UBfVV3fUCgg-hrR2afUQxXoMdhOs9x1pQI5lhth_dEg,779
19
+ bluer_objects/.abcli/host.sh,sha256=T4oYR9vBJlQQr40XswEbVE4w0kMG6mNxIpz-VBHSdQg,564
21
20
  bluer_objects/.abcli/ls.sh,sha256=CG6tPvxkXxa7SqK9DwLJLyjaekqDpYJFLYdjuURzeIA,611
22
21
  bluer_objects/.abcli/metadata.sh,sha256=BA1Mnf7_Zy7kiUp0UrDaJogTaBOtG-IwuTaeY8avbzI,374
23
- bluer_objects/.abcli/mlflow.sh,sha256=x2KcXjp4qduri9XdnXOJkocxKJTdoUc7e6EYPuuh-cg,644
22
+ bluer_objects/.abcli/mlflow.sh,sha256=nlQP0-LTzVG5OsvCgC0ybVkP3enh4K00OFF4sHakxYs,660
24
23
  bluer_objects/.abcli/object.sh,sha256=nzXPfgS2nicI-3dNVjC-xw9QKdWN1mtUcy7VmLGyWR8,816
25
- bluer_objects/.abcli/publish.sh,sha256=5PevHVqCJQAZfM78GjsOAfwFuu96yoH-wUK6RYaD688,1870
24
+ bluer_objects/.abcli/publish.sh,sha256=jnLEA9y6yT8SU0wexXCbGWCoCOteHQQMmE27fF9ouOo,1878
26
25
  bluer_objects/.abcli/select.sh,sha256=oXT3KBaTDOd8xlurALDIxhzbOTVOFyGpLTseqPxtNqU,863
27
26
  bluer_objects/.abcli/storage.sh,sha256=iYHxdXJI9sGR-WKxDuYKOB06FccSQ0G0-uZn9UJQGnc,321
28
- bluer_objects/.abcli/upload.sh,sha256=_H1K8yCQiBykuJe0_AJW5SRBBwWbOI9rXat6MMzrTBc,515
27
+ bluer_objects/.abcli/upload.sh,sha256=hUqGDyUEFF9tj7KHqioBvvQU1vjN978eHz-DPecf1bY,523
29
28
  bluer_objects/.abcli/metadata/get.sh,sha256=p8EmWVulzfim7cpyclhrmXvNBGEqtht51ohZV47MpwU,811
30
29
  bluer_objects/.abcli/metadata/post.sh,sha256=qHTuFi8RdmIoAOTMstKNEe5R3dW4hT5NJrz7u0KB-AU,561
31
- bluer_objects/.abcli/mlflow/browse.sh,sha256=PxImXtat6oMOHUHCiuAJeC8mDKaxQUvLa1YfOOq8deY,1149
32
- bluer_objects/.abcli/mlflow/cache.sh,sha256=WxkC4mnhSLwdFThghXcmyuNhaLdEZ0Q_ItIL7fLiyy8,529
33
- bluer_objects/.abcli/mlflow/list_registered_models.sh,sha256=7WwSvY4aYdXqgjjzTE0WzoGp5lomOk1JVmZOA_125EU,183
34
- bluer_objects/.abcli/mlflow/log_artifacts.sh,sha256=FOTGhzTKR8c1Pxl7wioeXJEDoM9j0Y_7Zv0kfSGMb30,232
35
- bluer_objects/.abcli/mlflow/log_run.sh,sha256=aZAkRJa5bqBEClCI4WQs8_2Gkchm0lyHTMvr45yy7HU,220
36
- bluer_objects/.abcli/mlflow/run.sh,sha256=wlyWNpJxZ2RGKWZu7bf4fxiRQ2a7gq5rGDaTwJsEaNg,249
37
- bluer_objects/.abcli/mlflow/tags.sh,sha256=ozXx3uGpM7Xxf943heMy0uF1kbNScT8dZIKWomB5peo,354
38
- bluer_objects/.abcli/mlflow/test.sh,sha256=Tbnb24e9jV45tFgsBibZwcLIsMC4Sdhf5IMEeoZoQTw,242
39
- bluer_objects/.abcli/mlflow/transition.sh,sha256=_xk5fqzzZWh69lh2Wi6IQ4X1I5LRGiJ5opy4El1Walw,598
40
- bluer_objects/.abcli/mlflow/tags/clone.sh,sha256=htaHWDQfzPJ5yY4dxqFKuRwnCz-XyLR8yT7gJ5PIQeU,423
41
- bluer_objects/.abcli/mlflow/tags/get.sh,sha256=cEdUnQhc7LYYbU2yuKwuPEFlAZ1iYkDpyeEvRWyjYZE,222
42
- bluer_objects/.abcli/mlflow/tags/search.sh,sha256=pQDnLUehke3pZ2MpsqJc6c_JFewIVAN07vJxVSJfUvM,288
43
- bluer_objects/.abcli/mlflow/tags/set.sh,sha256=5OHtkVDsLknD5v1GAUSr3FXm3EX_c8IwO7se68aEuz0,266
30
+ bluer_objects/.abcli/mlflow/browse.sh,sha256=fpRfK01jdZtA6BKaLKRJVDzoM3lU7ASIoKwoedv7vv4,1173
31
+ bluer_objects/.abcli/mlflow/cache.sh,sha256=JHEnDOtiJaKxFam_wbsNVKWruI3EoIEqGrVAjwT3Kyg,553
32
+ bluer_objects/.abcli/mlflow/list_registered_models.sh,sha256=cZGtAzfLx-kW3-zi0mLrfhzk4B8KyUL2sq2tD7lK5q8,191
33
+ bluer_objects/.abcli/mlflow/log_artifacts.sh,sha256=rLqK2kO9bTF9nqZDgf4P2KrK2SdWmgeVAXfcpdMs_GY,240
34
+ bluer_objects/.abcli/mlflow/log_run.sh,sha256=K2SDZZ88Pk1WGU1kz3DoaUXbGDrZLFaDsmSYLSUM_Q8,228
35
+ bluer_objects/.abcli/mlflow/run.sh,sha256=XgW-3BCfi_uWtIlwUq029C5hG6wBDltswy5NpUaVCY8,257
36
+ bluer_objects/.abcli/mlflow/tags.sh,sha256=7BZlSnoqSFZmW-8AA4W2dWkk3NPvCzEevQsqODIL62o,370
37
+ bluer_objects/.abcli/mlflow/test.sh,sha256=HDjCEGH7--S7pCCINIPxATe8rhQUgA0XlXyWXMcOD9o,250
38
+ bluer_objects/.abcli/mlflow/transition.sh,sha256=eltGLMGl1NmSJNm0xy_urbu379ONG9YoQhUnXMTXgF0,606
39
+ bluer_objects/.abcli/mlflow/tags/clone.sh,sha256=7RmBN55NJXWkXC_TFqNHmtR-9cxnxZnmnXFubFqwzC4,431
40
+ bluer_objects/.abcli/mlflow/tags/get.sh,sha256=tJb2jIjLcyIicq8erOCpYeFTwQoVorqjPTs1cZm-Ckc,230
41
+ bluer_objects/.abcli/mlflow/tags/search.sh,sha256=_qjMJiJ3Vuk84wf51BIOr1drw01vznU62QdKl3kDlYo,296
42
+ bluer_objects/.abcli/mlflow/tags/set.sh,sha256=_vDZf5qL4_yDcZIh7sFShXV7TSyaqxujfVkZiJUKFDA,274
44
43
  bluer_objects/.abcli/storage/clear.sh,sha256=pneKhggVbNQ3vbIWeipgjTbkzzTiFZGggoXJu7OAyrw,1248
45
44
  bluer_objects/.abcli/storage/download_file.sh,sha256=2ZQgsxzSYw5Zwcj5XQn-NcHI_MkmzmmZWLM4D1ev1N4,203
46
45
  bluer_objects/.abcli/storage/exists.sh,sha256=0b8wgjts1z8GZbE_KeulbrG471hACKORPPcwwqRvYNE,163
@@ -49,15 +48,15 @@ bluer_objects/.abcli/storage/rm.sh,sha256=kD4LY0QQXr_1EknzIHveC_I0sPFo6onfCkqtc9
49
48
  bluer_objects/.abcli/storage/status.sh,sha256=4vV49LOFp7xoT2Wg9aNa44m69Z6xOsKcU7w5e2NrnX8,371
50
49
  bluer_objects/.abcli/tests/README.sh,sha256=ToCOfpurKI1Zkl-bXzA-Yowc038jPn6Cx-_EuosgxCY,147
51
50
  bluer_objects/.abcli/tests/clone.sh,sha256=I3vp7n5RrmNXdi7c6jAI0I-8GG2f-1JN8uPfYVd6ZKk,510
52
- bluer_objects/.abcli/tests/gif.sh,sha256=bGDNvAsKBDsIdC_vBNzsNe7YC2jxBZdCo46LY9YGt20,493
53
- bluer_objects/.abcli/tests/help.sh,sha256=K55yGyL7bIPYawEj5RYXgx47zKbsO8RFGrSZGBCKOR8,1799
54
- bluer_objects/.abcli/tests/host.sh,sha256=yvWymyoJgdCjrNFQuvw9rB4GWakjgyuf4iqGhswC0QA,133
51
+ bluer_objects/.abcli/tests/gif.sh,sha256=i3wvd5Wn0XAhbSHUlVTJqLyQZgO_gTHAqr3LP60ZhNk,501
52
+ bluer_objects/.abcli/tests/help.sh,sha256=qfURMCu5f7fsfKoMFBIuz5_phIvHr7C8jMVX_2bMLE4,1744
53
+ bluer_objects/.abcli/tests/host.sh,sha256=lZUmJ8BIdZ-hCc8tzt-5YfHjXBhbnlwEBPMPAx22MIo,141
55
54
  bluer_objects/.abcli/tests/ls.sh,sha256=CbJUpEhAinnK606oWmqTumOYw0YywOMOOPh4hX5ZVAs,198
56
55
  bluer_objects/.abcli/tests/metadata.sh,sha256=NsWYxHpBMFq9JpxsQS1u6lXYjBSZ41la49XtTrONMm8,1658
57
- bluer_objects/.abcli/tests/mlflow_cache.sh,sha256=2tz5i7eLkpWvkYjCIll-kIrgmIip3juUpBQzmeJBc_Y,363
58
- bluer_objects/.abcli/tests/mlflow_logging.sh,sha256=dCeUslVK7rWjTfXTQnGFUTYGsaKkuxHpaOllrf9HTc8,286
59
- bluer_objects/.abcli/tests/mlflow_tags.sh,sha256=PW9OWKhyChpEYbSJH9waofSh6wA6ZekgOD4dExQ9QX0,764
60
- bluer_objects/.abcli/tests/mlflow_test.sh,sha256=5ng1fCyA689JRfqaPjSgJO_kYrhEYLRQfKQ_xZz2cAs,117
56
+ bluer_objects/.abcli/tests/mlflow_cache.sh,sha256=Z-H_sq7nk4ltlco1kwDS-tPeiVPtCNjHTC2NzNGGFrg,379
57
+ bluer_objects/.abcli/tests/mlflow_logging.sh,sha256=ADWs_etGq6EKxUUVE-iNvD9KH4oPv0o1IF8IlBhbooY,302
58
+ bluer_objects/.abcli/tests/mlflow_tags.sh,sha256=X37Le8GzFXGiVcz7g6TgXoqCRzQn31opz_76qkBR-j4,796
59
+ bluer_objects/.abcli/tests/mlflow_test.sh,sha256=7MXxYq2GgD2MEJbQlpx80qLT2HaaVn_PFFMpSA_hWA4,125
61
60
  bluer_objects/.abcli/tests/storage.sh,sha256=LTLYN5X_lfqJVeBwMop4GlQbs50dxhAkSRbM32KHY2g,1175
62
61
  bluer_objects/.abcli/tests/version.sh,sha256=cKf8z0KJKNawIHo_6RE0M5KAJ_ZpicTzyer5PMOVXCk,166
63
62
  bluer_objects/README/__init__.py,sha256=BmSX0KzYCTAc2_wwi8QWGSt7PYKNK46IYD0VPr_xJMk,692
@@ -78,11 +77,17 @@ bluer_objects/graphics/signature.py,sha256=9Mtx3OrPTmxV_VytkVcZKOfjOnkqbTLakVNL7
78
77
  bluer_objects/graphics/text.py,sha256=nnJrLUD4LIurBntSeUFwBOsbhzALXrzHzfDnBVEcFKA,4382
79
78
  bluer_objects/help/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
79
  bluer_objects/help/__main__.py,sha256=Dxg-JpMOIlYWZklI_J2LyiHnRui5lUwWmfM7FLRzUXA,237
80
+ bluer_objects/help/assets.py,sha256=qOXKckbcl_4I-iUbUYAVOm9B6Cd3l1l0Z61hZU9G2fo,675
81
81
  bluer_objects/help/clone.py,sha256=PDnQs7zc4sqmoBHPjVRfX7jIaePiohPGCNA5bxeerik,553
82
82
  bluer_objects/help/download.py,sha256=1fw3ASOXUuXcNhm8y0AK7ZBmXzWwZvdo2hK9ZVbgteA,439
83
- bluer_objects/help/functions.py,sha256=niiBZy-Q7ceSdLPEDJDAHL9IGBovZOawpXnAtomVU3E,560
83
+ bluer_objects/help/functions.py,sha256=lM_pQMIX4C2sMwkXqjfakyAYEhYOQ5CAjoNlWbjhHFA,918
84
+ bluer_objects/help/gif.py,sha256=gKV6vNT4bEC2Ch3QIb3Yc5DqzAH_UvAVCsuvzXeF1Sc,564
85
+ bluer_objects/help/host.py,sha256=4t4yrPGjTbnFtODcuBjfIzpA5pmmvc5s4QrjIqPPVsM,988
84
86
  bluer_objects/help/metadata.py,sha256=fk22NasBcZU1ffY4fu6AxrCzMQtTI28p_ghaSVRrrPM,2811
85
87
  bluer_objects/help/upload.py,sha256=p-nRw9d_S6PI7PcD0mBwWqQRPWQG4r3usjvOIzAbTeM,368
88
+ bluer_objects/help/mlflow/__init__.py,sha256=RMYjQDHw-gBTi4PAw9Mgdq4s5N7E0h-1dJ80EaVh5Uw,3695
89
+ bluer_objects/help/mlflow/cache.py,sha256=O8O1oaiq1e1z2HCi8fRe4hjSNimzvCaCAIu-u2GDHkE,704
90
+ bluer_objects/help/mlflow/tags.py,sha256=C3FcMRe-JhelhCQkAyZ5jlxGtgYxhNjtIhxka8k_ytI,2137
86
91
  bluer_objects/host/__init__.py,sha256=Ko43SWnZNsGKuIPU_l0w17pYrxCgVHQx3_zEoUNaHZY,272
87
92
  bluer_objects/host/__main__.py,sha256=J0MO2sUzrI_t_X4VVYyM6n41ND0yhhSXOmZSkDAC4rg,1751
88
93
  bluer_objects/host/functions.py,sha256=ADups78hYZDAnC6FlIICQ48WkFd4sPnRMWA0D6X-FV4,1663
@@ -131,8 +136,8 @@ bluer_objects/tests/test_path.py,sha256=JjONWyhZyMM_u1SzD1RI_iZ5vYJDUe-B51fbbHcz
131
136
  bluer_objects/tests/test_storage.py,sha256=2tJ6Hev9ShId9Qn-0FXDw41HWjcl3wymcB_Bv1FJWi4,1127
132
137
  bluer_objects/tests/test_testing.py,sha256=d2NH435yqJBl9wmfMqGGd-f0Y0jsL2QhHUXkty9AwPA,235
133
138
  bluer_objects/tests/test_version.py,sha256=Lyf3PMcA22e17BNRk_2VgPrtao6dWEgVoXo68Uds8SE,75
134
- bluer_objects-6.35.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
135
- bluer_objects-6.35.1.dist-info/METADATA,sha256=CLpe3jXpGMcb1zxfJ5zjDMOZPeXG5i8mZeQvtPIfJmQ,2748
136
- bluer_objects-6.35.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
137
- bluer_objects-6.35.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
138
- bluer_objects-6.35.1.dist-info/RECORD,,
139
+ bluer_objects-6.37.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
140
+ bluer_objects-6.37.1.dist-info/METADATA,sha256=H8cYO2adz7DdnaFaY9MV7-_6Zl-x-PKIA1lK8rtGkmA,2748
141
+ bluer_objects-6.37.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
142
+ bluer_objects-6.37.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
143
+ bluer_objects-6.37.1.dist-info/RECORD,,
@@ -1,5 +0,0 @@
1
- #! /usr/bin/env bash
2
-
3
- function abcli_cache() {
4
- abcli_mlflow_cache "$@"
5
- }