bluer-objects 6.64.1__py3-none-any.whl → 6.66.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.

@@ -8,4 +8,4 @@ function bluer_objects() {
8
8
  "${@:2}"
9
9
  }
10
10
 
11
- abcli_log $(bluer_objects version --show_icon 1)
11
+ bluer_ai_log $(bluer_objects version --show_icon 1)
@@ -12,7 +12,7 @@ function bluer_objects_clone() {
12
12
  local object_1_name=$(bluer_ai_clarify_object $2 ..)
13
13
  local object_2_name=$(bluer_ai_clarify_object $3 .)
14
14
 
15
- abcli_log "$object_1_name -clone:$transfer_mechanism-> $object_2_name"
15
+ bluer_ai_log "$object_1_name -clone:$transfer_mechanism-> $object_2_name"
16
16
 
17
17
  [[ "$do_download" == 1 ]] &&
18
18
  bluer_objects_download - $object_1_name
@@ -11,7 +11,7 @@ function bluer_objects_gif() {
11
11
  [[ "$do_download" == 1 ]] &&
12
12
  bluer_objects_download - $object_name
13
13
 
14
- abcli_log "generating animated gif: $object_name ..."
14
+ bluer_ai_log "generating animated gif: $object_name ..."
15
15
 
16
16
  bluer_ai_eval dryrun=$do_dryrun \
17
17
  python3 -m bluer_objects.graphics \
@@ -20,13 +20,13 @@ function bluer_objects_mlflow_browse() {
20
20
  bluer_ai_log_error "@mlflow: browse: $object_name: object not found."
21
21
  return 1
22
22
  fi
23
- abcli_log "experiment id: $experiment_id"
23
+ bluer_ai_log "experiment id: $experiment_id"
24
24
 
25
25
  url="$url/experiments/$experiment_id"
26
26
 
27
27
  if [[ "$browse_experiment" == 0 ]]; then
28
28
  local last_run_id=$(bluer_objects_mlflow get_run_id $object_name --count 1)
29
- abcli_log "last run id: $last_run_id"
29
+ bluer_ai_log "last run id: $last_run_id"
30
30
 
31
31
  url="$url/runs/$last_run_id"
32
32
  fi
@@ -5,7 +5,7 @@ function bluer_objects_mlflow_tags_clone() {
5
5
 
6
6
  local destination_object=$(bluer_ai_clarify_object $2 .)
7
7
 
8
- abcli_log "mlflow: tags: clone: $source_object -> $destination_object ..."
8
+ bluer_ai_log "mlflow: tags: clone: $source_object -> $destination_object ..."
9
9
 
10
10
  python3 -m bluer_objects.mlflow \
11
11
  clone_tags \
@@ -1,10 +1,8 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- export ABCLI_S3_OBJECT_PREFIX=s3://$ABCLI_AWS_S3_BUCKET_NAME/$ABCLI_AWS_S3_PREFIX
4
-
5
3
  function bluer_ai_clarify_object() {
6
4
  local object_name=$1
7
- local default=${2:-$(abcli_string_timestamp)}
5
+ local default=${2:-$(bluer_ai_string_timestamp)}
8
6
  local type_name=${3:-object}
9
7
 
10
8
  local object_var=abcli_${type_name}_name
@@ -1,7 +1,7 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
3
  function bluer_ai_select() {
4
- local object_name=$(bluer_ai_clarify_object "$1" $(abcli_string_timestamp))
4
+ local object_name=$(bluer_ai_clarify_object "$1" $(bluer_ai_string_timestamp))
5
5
 
6
6
  local options=$2
7
7
  local do_open=$(abcli_option_int "$options" open 0)
@@ -22,7 +22,7 @@ function bluer_ai_select() {
22
22
  [[ "$type_name" == object ]] &&
23
23
  cd $object_path
24
24
 
25
- abcli_log "📂 $type_name :: $object_name"
25
+ bluer_ai_log "📂 $type_name :: $object_name"
26
26
 
27
27
  [[ "$do_open" == 1 ]] &&
28
28
  open $object_path
@@ -28,7 +28,7 @@ function bluer_ai_storage_clear() {
28
28
  object_name=$(basename "$folder")
29
29
 
30
30
  if [[ "+$recent_projects+" == *"+$object_name+"* ]]; then
31
- abcli_log "will keep $object_name ..."
31
+ bluer_ai_log "will keep $object_name ..."
32
32
  else
33
33
  bluer_ai_log_warning "will delete $object_name ..."
34
34
 
@@ -3,14 +3,14 @@
3
3
  function test_bluer_objects_clone() {
4
4
  local options=$1
5
5
 
6
- local source_object_name=test_bluer_objects_clone-$(abcli_string_timestamp_short)
6
+ local source_object_name=test_bluer_objects_clone-$(bluer_ai_string_timestamp_short)
7
7
 
8
8
  python3 -m bluer_objects.testing \
9
9
  create_test_asset \
10
10
  --object_name $source_object_name
11
11
  [[ $? -ne 0 ]] && return 1
12
12
 
13
- local object_name=test_bluer_objects_clone-$(abcli_string_timestamp_short)
13
+ local object_name=test_bluer_objects_clone-$(bluer_ai_string_timestamp_short)
14
14
 
15
15
  bluer_objects_clone \
16
16
  ~relate,~tags,~upload,$options \
@@ -3,7 +3,7 @@
3
3
  function test_bluer_objects_gif() {
4
4
  local options=$1
5
5
 
6
- local source_object_name=test_bluer_objects_clone-$(abcli_string_timestamp_short)
6
+ local source_object_name=test_bluer_objects_clone-$(bluer_ai_string_timestamp_short)
7
7
 
8
8
  python3 -m bluer_objects.testing \
9
9
  create_test_asset \
@@ -1,7 +1,7 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
3
  function test_bluer_objects_ls() {
4
- local object_name=test_bluer_objects_ls-$(abcli_string_timestamp_short)
4
+ local object_name=test_bluer_objects_ls-$(bluer_ai_string_timestamp_short)
5
5
 
6
6
  python3 -m bluer_objects.testing \
7
7
  create_test_asset \
@@ -3,12 +3,12 @@
3
3
  function test_bluer_objects_metadata() {
4
4
  local returned_value
5
5
  for post_func in {1..3}; do
6
- local object_name=$(abcli_string_timestamp)
6
+ local object_name=$(bluer_ai_string_timestamp)
7
7
  local object_path=$ABCLI_OBJECT_ROOT/$object_name
8
8
  local filename=$object_path/metadata.yaml
9
9
 
10
- local key=$(abcli_string_random)
11
- local value=$(abcli_string_random)
10
+ local key=$(bluer_ai_string_random)
11
+ local value=$(bluer_ai_string_random)
12
12
 
13
13
  [[ "$post_func" == 1 ]] &&
14
14
  bluer_objects_metadata post \
@@ -1,8 +1,8 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
3
  function test_bluer_objects_mlflow_cache() {
4
- local keyword="test-keyword-$(abcli_string_timestamp_short)"
5
- local value="test-value-$(abcli_string_timestamp_short)"
4
+ local keyword="test-keyword-$(bluer_ai_string_timestamp_short)"
5
+ local value="test-value-$(bluer_ai_string_timestamp_short)"
6
6
 
7
7
  bluer_objects_mlflow cache write \
8
8
  $keyword $value
@@ -1,7 +1,7 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
3
  function test_bluer_objects_mlflow_logging() {
4
- local object_name="test-object-$(abcli_string_timestamp_short)"
4
+ local object_name="test-object-$(bluer_ai_string_timestamp_short)"
5
5
 
6
6
  bluer_objects_clone \
7
7
  upload \
@@ -1,9 +1,9 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
3
  function test_bluer_objects_mlflow_tags_validation() {
4
- local object_name="test-object-$(abcli_string_timestamp_short)"
5
- local tag="test-tag-$(abcli_string_timestamp_short)"
6
- local value="test-value-$(abcli_string_timestamp_short)"
4
+ local object_name="test-object-$(bluer_ai_string_timestamp_short)"
5
+ local tag="test-tag-$(bluer_ai_string_timestamp_short)"
6
+ local value="test-value-$(bluer_ai_string_timestamp_short)"
7
7
 
8
8
  bluer_objects_mlflow tags set \
9
9
  $object_name \
@@ -3,7 +3,7 @@
3
3
  function test_bluer_objects_storage() {
4
4
  local options=$1
5
5
 
6
- local object_name=test_bluer_objects_storage-$(abcli_string_timestamp_short)
6
+ local object_name=test_bluer_objects_storage-$(bluer_ai_string_timestamp_short)
7
7
  local object_path=$ABCLI_OBJECT_ROOT/$object_name
8
8
  mkdir -pv $object_path
9
9
 
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.64.1"
7
+ VERSION = "6.66.1"
8
8
 
9
9
  REPO_NAME = "bluer-objects"
10
10
 
bluer_objects/env.py CHANGED
@@ -35,8 +35,6 @@ DUMMY_TEXT = "This is some dummy text. This is some dummy text. This is some dum
35
35
 
36
36
  ABCLI_MLFLOW_EXPERIMENT_PREFIX = get_env("ABCLI_MLFLOW_EXPERIMENT_PREFIX")
37
37
 
38
- ABCLI_S3_OBJECT_PREFIX = "to-be-removed"
39
-
40
38
  BLUER_OBJECTS_STORAGE_INTERFACE = get_env("BLUER_OBJECTS_STORAGE_INTERFACE")
41
39
 
42
40
  WEBDAV_HOSTNAME = get_env("WEBDAV_HOSTNAME")
bluer_objects/objects.py CHANGED
@@ -6,9 +6,7 @@ from bluer_objects import file, path
6
6
  from bluer_objects.env import (
7
7
  ABCLI_OBJECT_ROOT,
8
8
  abcli_object_name,
9
- ABCLI_S3_OBJECT_PREFIX,
10
9
  )
11
- from bluer_objects.host import shell
12
10
  from bluer_objects.logger import logger
13
11
 
14
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bluer_objects
3
- Version: 6.64.1
3
+ Version: 6.66.1
4
4
  Summary: 🌀 data objects for Bash.
5
5
  Home-page: https://github.com/kamangir/bluer-objects
6
6
  Author: Arash Abadpour (Kamangir)
@@ -52,6 +52,6 @@ Also home to 🌀 [bluer README](https://github.com/kamangir/bluer-objects/blob/
52
52
 
53
53
  [![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)
54
54
 
55
- built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_objects-6.64.1`](https://github.com/kamangir/bluer-objects).
55
+ built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_objects-6.66.1`](https://github.com/kamangir/bluer-objects).
56
56
 
57
- built by 🌀 [`blueness-3.110.1`](https://github.com/kamangir/blueness).
57
+ built by 🌀 [`blueness-3.115.1`](https://github.com/kamangir/blueness).
@@ -1,9 +1,9 @@
1
- bluer_objects/__init__.py,sha256=QDZ825jPx7savraCIwBfsJL9DwmP0KrT5Qx3GrVNM5Q,310
1
+ bluer_objects/__init__.py,sha256=F2YrnuQmt10fdp5L_aYp6Str2u5TGyEGdL18KpRoH3w,310
2
2
  bluer_objects/__main__.py,sha256=Yqfov833_hJuRne19WrGhT5DWAPtdffpoMxeSXS7EGw,359
3
3
  bluer_objects/config.env,sha256=TzX3WyJjwEs9V-NzK3FBUyePhb0i2ZoCja-lhDF_xJU,116
4
- bluer_objects/env.py,sha256=4g_JNKr1uBh8bg39zXLYOCizlWD9_0fpDUYliNgpmj4,1225
4
+ bluer_objects/env.py,sha256=J5LklWyWT-Yvvoe8MVCZQ3iqRqyDutq6IbNYNj9A1VM,1183
5
5
  bluer_objects/markdown.py,sha256=PhAwCTHIisO9qOpKHeb63U5oD9Zi8LnIQKTx_OWS4wE,938
6
- bluer_objects/objects.py,sha256=RUFtGn3owSvRBgIX7TRLjlMFEz_vn8fZic5Z10LhuJ8,1691
6
+ bluer_objects/objects.py,sha256=EYzA1vKngY2c_gdMKnUfrKVUcf-5wpFKgBFaVJA4cLE,1626
7
7
  bluer_objects/path.py,sha256=9uspZqObI29NerVDF30uILLaouDtloASh0Mywyq2_ew,3946
8
8
  bluer_objects/sample.env,sha256=rYG7y_Vyhcjj8PTeSSJToh56NLke0jvedkcnldvrQ6k,47
9
9
  bluer_objects/urls.py,sha256=paHaYlLMQOI46-EYNch5ohu9Q09BMkF2vvJy1QufrVI,19
@@ -11,22 +11,22 @@ bluer_objects/.abcli/abcli.sh,sha256=8RDi_vCZfB6JOeGSJWcmmzZv2pS4o-_j250rFYG7Ljc
11
11
  bluer_objects/.abcli/actions.sh,sha256=HZI-X5KUy6bXEHmxywfBN1zbHalU0mcTblTQ2HvIfOE,236
12
12
  bluer_objects/.abcli/aka.sh,sha256=odRbw4KZb9Ld7uXny6H2pPi64_5kowKX3s68N6YvRmI,23
13
13
  bluer_objects/.abcli/alias.sh,sha256=wroySjiDZ04QpTIO-MU9dVvJD26FlIbTf4WgF_IW5Jc,626
14
- bluer_objects/.abcli/bluer_objects.sh,sha256=yn--zSWitcUQIOudMyPjE9hAbryG5diiCuyHl11gsG4,207
15
- bluer_objects/.abcli/clone.sh,sha256=EWdr7IfbQlYTnNoDhr45Ktzs5GN8ihV9rXR69hte5nM,1954
14
+ bluer_objects/.abcli/bluer_objects.sh,sha256=x7qf8hSAp3dAl0Hes4J07vL6qP-mWFUkJhvUXzTJC_8,210
15
+ bluer_objects/.abcli/clone.sh,sha256=SgR5i3wB5h_ilZVpoTs5L6PyvlkXcoiJy7zx2e2XuAU,1957
16
16
  bluer_objects/.abcli/download.sh,sha256=PBSEMcVAU6QvDV7dlSADWw713hMBxD6sZn588WvUfGQ,558
17
17
  bluer_objects/.abcli/file.sh,sha256=djcHSFS8fqlCsoDyZKmimNTzd-jOUnxbOFpL7xq_hGk,150
18
- bluer_objects/.abcli/gif.sh,sha256=1euolLMpC3ZRAWzfIJoFqh48BG0R63F9wYrbKqdgCwA,791
18
+ bluer_objects/.abcli/gif.sh,sha256=61RRMkSJ2tvyCN0rlxqLWmo-lJEQ0v4RQLAUmEFTuL0,794
19
19
  bluer_objects/.abcli/host.sh,sha256=N-Gdsk-mR2V2MvFlwlIVwaiGkQyV1DoM5UdhQrpUsls,573
20
20
  bluer_objects/.abcli/ls.sh,sha256=LO8XOtvWNr-idVhM_ciySD3m-M42uWqlIdNP4hg2ph8,414
21
21
  bluer_objects/.abcli/metadata.sh,sha256=EXBB39nn5PRRryIlfetIpR4fPQ-4eDg7Hnee9g1JXrI,377
22
22
  bluer_objects/.abcli/mlflow.sh,sha256=6CEKiyP8YgBRXVmEQ15EHh_eHgAfjajZPE9Re2bvMNM,666
23
- bluer_objects/.abcli/object.sh,sha256=ANKJh5I-QVLZ0BzUw94nWIhGTsj40hukyIbabbNxvYw,819
24
- bluer_objects/.abcli/select.sh,sha256=PfvEYjBhIpcvY4W-Xgkld26zzVusVzPUnqJzFnpkdfg,866
23
+ bluer_objects/.abcli/object.sh,sha256=Zh2ZMFqBSIOHwwwLegCMxJRfaYCbPp1EJMT3LvcFzhE,739
24
+ bluer_objects/.abcli/select.sh,sha256=VzO6guAa-E_uBzk6GtoG-nZM7XMAj8beQVCqZ_inNE0,872
25
25
  bluer_objects/.abcli/storage.sh,sha256=iYHxdXJI9sGR-WKxDuYKOB06FccSQ0G0-uZn9UJQGnc,321
26
26
  bluer_objects/.abcli/upload.sh,sha256=emECgUXK3XiqkxTkZ8v41DCkDYkTrvs6kpwUP6bRgSg,526
27
27
  bluer_objects/.abcli/metadata/get.sh,sha256=kpgY_0oSELDrtK1xjWyrLyTBg2DuMLOzvNSMfh2PFDs,814
28
28
  bluer_objects/.abcli/metadata/post.sh,sha256=pzafmTh-ItDIrVjNHOAUpLNCwJ4NGjNAgWSkqUQLGr8,564
29
- bluer_objects/.abcli/mlflow/browse.sh,sha256=iIiAeRqjqScLM1XnhepTcNqPt3OH8sT3GhMYqJTGPxk,1179
29
+ bluer_objects/.abcli/mlflow/browse.sh,sha256=ogwTp-tGB75NNEk04IckNQO3HyhBSLUnCpuHs5P-7GY,1185
30
30
  bluer_objects/.abcli/mlflow/cache.sh,sha256=tpdCqL3jMFpfRmYS6UTgLiycv43_z_N_J1ux2XsDgdA,556
31
31
  bluer_objects/.abcli/mlflow/list_registered_models.sh,sha256=cZGtAzfLx-kW3-zi0mLrfhzk4B8KyUL2sq2tD7lK5q8,191
32
32
  bluer_objects/.abcli/mlflow/log_artifacts.sh,sha256=3sCdDHoRVFqCg_DPF8zw3HSAj8Grr-Mbwmf0iUlDmrk,243
@@ -35,28 +35,28 @@ bluer_objects/.abcli/mlflow/run.sh,sha256=4eywpZJ1Qc8sGObzRiS6iyeySOxTHsq2ygvSDF
35
35
  bluer_objects/.abcli/mlflow/tags.sh,sha256=IdynOEpoID-s2Lq2Ht8Hyo3IC48qQl_LXZ32LbxEYDA,373
36
36
  bluer_objects/.abcli/mlflow/test.sh,sha256=cwkVhaWFQxprFHZctuVlor76TJbws2fBhrTsEhHRoUs,253
37
37
  bluer_objects/.abcli/mlflow/transition.sh,sha256=eltGLMGl1NmSJNm0xy_urbu379ONG9YoQhUnXMTXgF0,606
38
- bluer_objects/.abcli/mlflow/tags/clone.sh,sha256=1C8TcnUoHlvy9QosqB2GeD6xec_QO4weLLZlcvVtEZc,437
38
+ bluer_objects/.abcli/mlflow/tags/clone.sh,sha256=HY2tigFx9fG4BVDjcoQAUCKil01yESv1f4H9Y5_thm4,440
39
39
  bluer_objects/.abcli/mlflow/tags/get.sh,sha256=hsI_zzwJkRmnxvAKlCPdkGlEbn5Ol3eVp8sOi_iA2o8,233
40
40
  bluer_objects/.abcli/mlflow/tags/search.sh,sha256=_qjMJiJ3Vuk84wf51BIOr1drw01vznU62QdKl3kDlYo,296
41
41
  bluer_objects/.abcli/mlflow/tags/set.sh,sha256=-8hYtWAChlGbKIiI502IyaEaTikuACFFwUTdUnGkW7Q,277
42
- bluer_objects/.abcli/storage/clear.sh,sha256=UAtYhzeb27jHQnZELhr_Xv8aQtpB-JmJZXlXdrCWKYs,1257
42
+ bluer_objects/.abcli/storage/clear.sh,sha256=8nIi9pSY1d9KbKcGJOGrDwLQq50wyCvO3dzc8r662PU,1260
43
43
  bluer_objects/.abcli/storage/download_file.sh,sha256=2ZQgsxzSYw5Zwcj5XQn-NcHI_MkmzmmZWLM4D1ev1N4,203
44
44
  bluer_objects/.abcli/storage/exists.sh,sha256=0b8wgjts1z8GZbE_KeulbrG471hACKORPPcwwqRvYNE,163
45
45
  bluer_objects/.abcli/storage/list.sh,sha256=ySUDS31yq9qQ_2q7oXR302hConAzs0LYQ739TWJgQsI,165
46
46
  bluer_objects/.abcli/storage/rm.sh,sha256=wkfCCH-e2wX8WyEwTWanzk58kat3UJE-m2iv9MvR5zg,283
47
47
  bluer_objects/.abcli/storage/status.sh,sha256=anmr-jD3Yd4zNwGnJXLojvqGjEwht6lKBO8ykRPefMo,374
48
48
  bluer_objects/.abcli/tests/README.sh,sha256=gk2KuNLFTuV3qdVgH8BNfJmur3gZoSV8EwLboVjrCgM,150
49
- bluer_objects/.abcli/tests/clone.sh,sha256=I3vp7n5RrmNXdi7c6jAI0I-8GG2f-1JN8uPfYVd6ZKk,510
50
- bluer_objects/.abcli/tests/gif.sh,sha256=i3wvd5Wn0XAhbSHUlVTJqLyQZgO_gTHAqr3LP60ZhNk,501
49
+ bluer_objects/.abcli/tests/clone.sh,sha256=4FfZPySVz0ptrYPRktomAYtQWZiSMM0JWWqpDCjo8Zk,516
50
+ bluer_objects/.abcli/tests/gif.sh,sha256=2KbHki5Vb1lFacRhdmtyCZFkoyl1GXBaseN9Bvbj2NQ,504
51
51
  bluer_objects/.abcli/tests/help.sh,sha256=O10t4Q32bWXyrV9IXbGDSM1HzLtBu0dL2Btp69mv8ng,1773
52
52
  bluer_objects/.abcli/tests/host.sh,sha256=GBuTLNw1sU3fAb5jS-ew_qAfovVCQ5CLaz5ad04IkoA,144
53
- bluer_objects/.abcli/tests/ls.sh,sha256=WQG43eERiTfkeEZNdx0L3UIQj0ThOm1I6GSDY6Jt4G0,595
54
- bluer_objects/.abcli/tests/metadata.sh,sha256=HKj0rs32GYj1aJn2lBSL_Xgn9oGc_YFSRsGTY0gOnnA,1714
55
- bluer_objects/.abcli/tests/mlflow_cache.sh,sha256=2BI74uBn9CUxttoFZxkfItf-0nV9A8IqVqDDtls2p9w,382
56
- bluer_objects/.abcli/tests/mlflow_logging.sh,sha256=ADWs_etGq6EKxUUVE-iNvD9KH4oPv0o1IF8IlBhbooY,302
57
- bluer_objects/.abcli/tests/mlflow_tags.sh,sha256=ssR9Xumkif_aVzkPU8RBKg1F_bf9QOmYyVnYnbmNWtg,802
53
+ bluer_objects/.abcli/tests/ls.sh,sha256=GeNMX37aXHR8SksD4ASkWHx1iD3Z7eb-AFQR6yZzN9g,598
54
+ bluer_objects/.abcli/tests/metadata.sh,sha256=OP1c0h0TSlDycrv0UglKLyBtTQwqh9M0nqVAdQUzkno,1723
55
+ bluer_objects/.abcli/tests/mlflow_cache.sh,sha256=EEAPGasQgN4j6YLp30_IMYAPCTUBxmTgoMzMSpseVbw,388
56
+ bluer_objects/.abcli/tests/mlflow_logging.sh,sha256=TVzHhk9qRthpP2xdKwu3LwK00S77GqH50io3oVyS2UE,305
57
+ bluer_objects/.abcli/tests/mlflow_tags.sh,sha256=pX4sEK_z2Vrb7a6Bq4qWurFVPZkvjpS10K4MLx3mf64,811
58
58
  bluer_objects/.abcli/tests/mlflow_test.sh,sha256=7MXxYq2GgD2MEJbQlpx80qLT2HaaVn_PFFMpSA_hWA4,125
59
- bluer_objects/.abcli/tests/storage.sh,sha256=3nNZMTpWS-n3G7EJJxRfiky96_DBFgI5qLgtD5diMk4,1196
59
+ bluer_objects/.abcli/tests/storage.sh,sha256=HOpVnA-pQEWC4mSdTpE31BM7FxJlE9kZdvEL57VfA7c,1199
60
60
  bluer_objects/.abcli/tests/version.sh,sha256=k-lXozSjyFgFR58cTzUYla0Ef-upx3sSK641zI5ynfE,169
61
61
  bluer_objects/README/__init__.py,sha256=BmSX0KzYCTAc2_wwi8QWGSt7PYKNK46IYD0VPr_xJMk,692
62
62
  bluer_objects/README/functions.py,sha256=NR1cdBqmmgQWkWQdRMPT9RmvlpzeXUEzbBOvT4c1mX0,10806
@@ -136,8 +136,8 @@ bluer_objects/tests/test_path.py,sha256=JjONWyhZyMM_u1SzD1RI_iZ5vYJDUe-B51fbbHcz
136
136
  bluer_objects/tests/test_storage.py,sha256=2tJ6Hev9ShId9Qn-0FXDw41HWjcl3wymcB_Bv1FJWi4,1127
137
137
  bluer_objects/tests/test_testing.py,sha256=d2NH435yqJBl9wmfMqGGd-f0Y0jsL2QhHUXkty9AwPA,235
138
138
  bluer_objects/tests/test_version.py,sha256=Lyf3PMcA22e17BNRk_2VgPrtao6dWEgVoXo68Uds8SE,75
139
- bluer_objects-6.64.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
140
- bluer_objects-6.64.1.dist-info/METADATA,sha256=tLXyVQ0ld3SQGzk0mDx6e8ApmpZDRZl9L9jDJEznjsg,2738
141
- bluer_objects-6.64.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
142
- bluer_objects-6.64.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
143
- bluer_objects-6.64.1.dist-info/RECORD,,
139
+ bluer_objects-6.66.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
140
+ bluer_objects-6.66.1.dist-info/METADATA,sha256=uRH6_ARWZoSw5yQY8cYseYrbM52I2jJEsT7GLlc3hwo,2738
141
+ bluer_objects-6.66.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
142
+ bluer_objects-6.66.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
143
+ bluer_objects-6.66.1.dist-info/RECORD,,