bluer-objects 6.9.1__py3-none-any.whl → 6.12.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 (35) hide show
  1. bluer_objects/.abcli/alias.sh +1 -1
  2. bluer_objects/.abcli/host.sh +1 -1
  3. bluer_objects/README/functions.py +1 -1
  4. bluer_objects/__init__.py +1 -1
  5. bluer_objects/env.py +1 -1
  6. bluer_objects/file/__main__.py +1 -1
  7. bluer_objects/file/functions.py +2 -2
  8. bluer_objects/file/load.py +2 -2
  9. bluer_objects/file/save.py +3 -3
  10. bluer_objects/graphics/gif.py +1 -1
  11. bluer_objects/graphics/screen.py +1 -1
  12. bluer_objects/help/__main__.py +1 -1
  13. bluer_objects/host/__main__.py +1 -1
  14. bluer_objects/host/functions.py +1 -1
  15. bluer_objects/logger/__init__.py +1 -1
  16. bluer_objects/logger/matrix.py +2 -2
  17. bluer_objects/mlflow/logging.py +1 -1
  18. bluer_objects/mlflow/models.py +1 -1
  19. bluer_objects/mlflow/objects.py +1 -1
  20. bluer_objects/mlflow/runs.py +2 -2
  21. bluer_objects/mlflow/tags.py +2 -2
  22. bluer_objects/mlflow/testing.py +2 -2
  23. bluer_objects/objects.py +1 -1
  24. bluer_objects/path.py +2 -2
  25. bluer_objects/tests/test_env.py +2 -2
  26. bluer_objects/tests/test_file_load_save.py +1 -1
  27. bluer_objects/tests/test_graphics_signature.py +1 -1
  28. bluer_objects/tests/test_markdown.py +1 -1
  29. bluer_objects/tests/test_metadata.py +1 -1
  30. bluer_objects/tests/test_mlflow.py +2 -2
  31. {bluer_objects-6.9.1.dist-info → bluer_objects-6.12.1.dist-info}/METADATA +3 -3
  32. {bluer_objects-6.9.1.dist-info → bluer_objects-6.12.1.dist-info}/RECORD +35 -35
  33. {bluer_objects-6.9.1.dist-info → bluer_objects-6.12.1.dist-info}/WHEEL +0 -0
  34. {bluer_objects-6.9.1.dist-info → bluer_objects-6.12.1.dist-info}/licenses/LICENSE +0 -0
  35. {bluer_objects-6.9.1.dist-info → bluer_objects-6.12.1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env bash
2
2
 
3
- alias @ai=blue_ai
3
+ alias @ai=bluer_ai
4
4
 
5
5
  alias @download=abcli_download
6
6
 
@@ -5,7 +5,7 @@ function abcli_host() {
5
5
  local options=$2
6
6
 
7
7
  if [ $task == "get" ]; then
8
- python3 -m blue_options.host \
8
+ python3 -m bluer_options.host \
9
9
  get \
10
10
  --keyword "$2" \
11
11
  "${@:3}"
@@ -3,7 +3,7 @@ import os
3
3
  import yaml
4
4
 
5
5
  from blueness import module
6
- from blue_options import fullname
6
+ from bluer_options import fullname
7
7
 
8
8
  from bluer_objects import NAME as MY_NAME, ICON as MY_ICON
9
9
  from bluer_objects.env import ABCLI_PUBLIC_PREFIX
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.9.1"
7
+ VERSION = "6.12.1"
8
8
 
9
9
  REPO_NAME = "bluer-objects"
10
10
 
bluer_objects/env.py CHANGED
@@ -1,7 +1,7 @@
1
1
  from typing import Union
2
2
  import os
3
3
 
4
- from blue_options.env import load_config, load_env, get_env
4
+ from bluer_options.env import load_config, load_env, get_env
5
5
 
6
6
  load_env(__name__)
7
7
  load_config(__name__)
@@ -3,7 +3,7 @@ from tqdm import tqdm
3
3
 
4
4
  from blueness import module
5
5
  from blueness.argparse.generic import sys_exit
6
- from blue_options import string
6
+ from bluer_options import string
7
7
 
8
8
  from bluer_objects import file, NAME
9
9
  from bluer_objects.logger import logger
@@ -6,8 +6,8 @@ import os
6
6
  import shutil
7
7
 
8
8
  from blueness import module
9
- from blue_options import string
10
- from blue_options.logger import crash_report
9
+ from bluer_options import string
10
+ from bluer_options.logger import crash_report
11
11
 
12
12
  from bluer_objects import NAME
13
13
  from bluer_objects.env import abcli_object_path
@@ -4,8 +4,8 @@ import json
4
4
  import numpy as np
5
5
 
6
6
  from blueness import module
7
- from blue_options import string
8
- from blue_options.logger import crash_report
7
+ from bluer_options import string
8
+ from bluer_options.logger import crash_report
9
9
 
10
10
  from bluer_objects import NAME
11
11
  from bluer_objects.logger import logger
@@ -6,9 +6,9 @@ import dill
6
6
  import pandas as pd
7
7
 
8
8
  from blueness import module
9
- from blue_options.logger import crash_report
10
- from blue_options import string
11
- from blue_options.host import is_jupyter
9
+ from bluer_options.logger import crash_report
10
+ from bluer_options import string
11
+ from bluer_options.host import is_jupyter
12
12
 
13
13
  from bluer_objects import NAME
14
14
  from bluer_objects.file.classes import JsonEncoder
@@ -3,7 +3,7 @@ from tqdm import tqdm
3
3
  from typing import List
4
4
 
5
5
  from blueness import module
6
- from blue_options.logger import crash_report
6
+ from bluer_options.logger import crash_report
7
7
 
8
8
  from bluer_objects import NAME
9
9
  from bluer_objects.logger import logger
@@ -2,7 +2,7 @@ import os
2
2
  from typing import Tuple
3
3
 
4
4
  from blueness import module
5
- from blue_options.host.functions import (
5
+ from bluer_options.host.functions import (
6
6
  is_rpi,
7
7
  is_headless,
8
8
  is_mac,
@@ -1,5 +1,5 @@
1
1
  from blueness import module
2
- from blue_options.help.functions import help_main
2
+ from bluer_options.help.functions import help_main
3
3
 
4
4
  from bluer_objects import NAME
5
5
  from bluer_objects.help.functions import help_functions
@@ -4,7 +4,7 @@ from blueness import module
4
4
  from blueness.argparse.generic import sys_exit
5
5
 
6
6
  from bluer_objects import NAME, file
7
- from blue_options.host import signature as host_signature
7
+ from bluer_options.host import signature as host_signature
8
8
  from bluer_objects.graphics import add_signature
9
9
  from bluer_objects.objects import signature as object_signature
10
10
  from bluer_objects.logger import logger
@@ -2,7 +2,7 @@ import os
2
2
  from typing import Union, Tuple, List
3
3
 
4
4
  from blueness import module
5
- from blue_options.logger import crash_report
5
+ from bluer_options.logger import crash_report
6
6
 
7
7
  from bluer_objects import NAME, file
8
8
  from bluer_objects.logger import logger
@@ -1,4 +1,4 @@
1
- from blue_options.logger import get_logger
1
+ from bluer_options.logger import get_logger
2
2
  from bluer_objects import ICON
3
3
 
4
4
  logger = get_logger(ICON)
@@ -5,8 +5,8 @@ import math
5
5
  import cv2
6
6
 
7
7
  from blueness import module
8
- from blue_options import string
9
- from abcli.host import signature
8
+ from bluer_options import string
9
+ from bluer_ai.host import signature
10
10
 
11
11
  from bluer_objects import NAME
12
12
  from bluer_objects import file
@@ -4,7 +4,7 @@ import glob
4
4
  import mlflow
5
5
 
6
6
  from blueness import module
7
- from blue_options.logger import crash_report
7
+ from bluer_options.logger import crash_report
8
8
 
9
9
  from bluer_objects import file, objects, NAME
10
10
  from bluer_objects.mlflow.runs import start_run, end_run
@@ -2,7 +2,7 @@ from typing import Tuple, List
2
2
  from mlflow.tracking import MlflowClient
3
3
 
4
4
  from blueness import module
5
- from blue_options.logger import crash_report
5
+ from bluer_options.logger import crash_report
6
6
 
7
7
  from bluer_objects import NAME
8
8
  from bluer_objects.logger import logger
@@ -3,7 +3,7 @@ import mlflow
3
3
  from mlflow.tracking import MlflowClient
4
4
 
5
5
  from blueness import module
6
- from blue_options.logger import crash_report
6
+ from bluer_options.logger import crash_report
7
7
 
8
8
  from bluer_objects import NAME
9
9
  from bluer_objects.env import ABCLI_MLFLOW_EXPERIMENT_PREFIX
@@ -5,8 +5,8 @@ from mlflow.tracking import MlflowClient
5
5
  from mlflow.entities import ViewType
6
6
 
7
7
  from blueness import module
8
- from blue_options import string
9
- from blue_options.logger import crash_report
8
+ from bluer_options import string
9
+ from bluer_options.logger import crash_report
10
10
 
11
11
  from bluer_objects import NAME
12
12
  from bluer_objects.mlflow.objects import get_id
@@ -3,8 +3,8 @@ from mlflow.tracking import MlflowClient
3
3
  from mlflow.entities import ViewType
4
4
 
5
5
  from blueness import module
6
- from blue_options.options import Options
7
- from blue_options.logger import crash_report
6
+ from bluer_options.options import Options
7
+ from bluer_options.logger import crash_report
8
8
 
9
9
  from bluer_objects import NAME
10
10
  from bluer_objects.mlflow.objects import to_experiment_name, to_object_name
@@ -1,8 +1,8 @@
1
1
  import mlflow
2
2
 
3
3
  from blueness import module
4
- from blue_options import string
5
- from blue_options.logger import crash_report
4
+ from bluer_options import string
5
+ from bluer_options.logger import crash_report
6
6
 
7
7
  from bluer_objects import NAME, VERSION
8
8
  from bluer_objects.mlflow.objects import get_id
bluer_objects/objects.py CHANGED
@@ -1,6 +1,6 @@
1
1
  import os
2
2
 
3
- from blue_options import string
3
+ from bluer_options import string
4
4
 
5
5
  from bluer_objects import file, path
6
6
  from bluer_objects.env import (
bluer_objects/path.py CHANGED
@@ -4,8 +4,8 @@ import pathlib
4
4
  import shutil
5
5
 
6
6
  from blueness import module
7
- from blue_options import string
8
- from blue_options.logger import crash_report
7
+ from bluer_options import string
8
+ from bluer_options.logger import crash_report
9
9
 
10
10
  from bluer_objects import NAME
11
11
  from bluer_objects.logger import logger
@@ -1,10 +1,10 @@
1
- from abcli.tests.test_env import test_abcli_env
1
+ from bluer_ai.tests.test_env import test_bluer_ai_env
2
2
 
3
3
  from bluer_objects import env
4
4
 
5
5
 
6
6
  def test_required_env():
7
- test_abcli_env()
7
+ test_bluer_ai_env()
8
8
 
9
9
 
10
10
  def test_bluer_objects_env():
@@ -2,7 +2,7 @@ import pytest
2
2
  from typing import Callable, Union, Tuple, List
3
3
  import numpy as np
4
4
 
5
- from blue_options import string
5
+ from bluer_options import string
6
6
 
7
7
  from bluer_objects import file, objects, env
8
8
  from bluer_objects.file.load import (
@@ -2,7 +2,7 @@ import pytest
2
2
  from typing import Union, List
3
3
  import numpy as np
4
4
 
5
- from blue_options import string
5
+ from bluer_options import string
6
6
 
7
7
  from bluer_objects.env import DUMMY_TEXT
8
8
  from bluer_objects.graphics.signature import add_signature, justify_text
@@ -1,4 +1,4 @@
1
- from blue_options.string import random
1
+ from bluer_options.string import random
2
2
 
3
3
  from bluer_objects.markdown import generate_table
4
4
 
@@ -1,7 +1,7 @@
1
1
  import pytest
2
2
  from typing import Callable
3
3
 
4
- from blue_options.string import random
4
+ from bluer_options.string import random
5
5
 
6
6
  from bluer_objects import file
7
7
  from bluer_objects.objects import unique_object, object_path, path_of
@@ -1,7 +1,7 @@
1
1
  import pytest
2
2
 
3
- from blue_options.options import Options
4
- from blue_options import string
3
+ from bluer_options.options import Options
4
+ from bluer_options import string
5
5
 
6
6
  from bluer_objects.objects import unique_object
7
7
  from bluer_objects.mlflow import cache
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bluer_objects
3
- Version: 6.9.1
3
+ Version: 6.12.1
4
4
  Summary: 🌀 data objects for Bash.
5
5
  Home-page: https://github.com/kamangir/bluer-objects
6
6
  Author: Arash Abadpour (Kamangir)
@@ -12,7 +12,7 @@ Classifier: License :: Public Domain
12
12
  Classifier: Operating System :: OS Independent
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
- Requires-Dist: abcli
15
+ Requires-Dist: bluer_ai
16
16
  Requires-Dist: dill
17
17
  Requires-Dist: mlflow
18
18
  Requires-Dist: pandas
@@ -52,6 +52,6 @@ Also home to [blue README](https://github.com/kamangir/bluer-objects/blob/main/b
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 🌀 [`blue_options-4.240.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`bluer_objects-6.9.1`](https://github.com/kamangir/bluer-objects).
55
+ built by 🌀 [`bluer_options-5.7.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`bluer_objects-6.12.1`](https://github.com/kamangir/bluer-objects).
56
56
 
57
57
  built by 🌀 [`blueness-3.96.1`](https://github.com/kamangir/blueness).
@@ -1,23 +1,23 @@
1
- bluer_objects/__init__.py,sha256=TuxzlNhpLvlb_Op2wN-GBu-nRSrkAPe-p7InBCSzwcs,309
1
+ bluer_objects/__init__.py,sha256=PGHh82yYzy4Ke77ccPsUd9RAieONbGfpRo7272zjqUA,310
2
2
  bluer_objects/__main__.py,sha256=Yqfov833_hJuRne19WrGhT5DWAPtdffpoMxeSXS7EGw,359
3
3
  bluer_objects/config.env,sha256=H21xLEVlI3qiDiOrG3Tzgkb8vKSQXCr3kr9jzoU7I-4,508
4
- bluer_objects/env.py,sha256=L8TmIm8mp0OLUX1tV1HlLyKD2YqvVv8QZuUbdeOkuZA,1910
4
+ bluer_objects/env.py,sha256=sHS591gL1njNe2P8EcexWAJuCOF8wlA_ES4eWh6I12Q,1911
5
5
  bluer_objects/markdown.py,sha256=PhAwCTHIisO9qOpKHeb63U5oD9Zi8LnIQKTx_OWS4wE,938
6
- bluer_objects/objects.py,sha256=aizYA0_hleEJoemScro5AkPXGdcK0MXRC_sryiCZdOE,3461
7
- bluer_objects/path.py,sha256=mn5wM4a-rdIlVA7ePBSUxZuTKRT7VnqmGUQp93RjFdc,3944
6
+ bluer_objects/objects.py,sha256=TWbb6jeVvHJcLPutftXb724zxIiAy6aq3q4SLYgvPns,3462
7
+ bluer_objects/path.py,sha256=9uspZqObI29NerVDF30uILLaouDtloASh0Mywyq2_ew,3946
8
8
  bluer_objects/sample.env,sha256=HBpf1DRNOkN29g79B9HJUceVJHddADxexsVlnGwLLbI,860
9
9
  bluer_objects/urls.py,sha256=paHaYlLMQOI46-EYNch5ohu9Q09BMkF2vvJy1QufrVI,19
10
10
  bluer_objects/.abcli/abcli.sh,sha256=o_6MCA6iXCZU3NfOCxlMmOumjwkVGzPR1e0XWnMfdgk,193
11
11
  bluer_objects/.abcli/actions.sh,sha256=NktmgzOvpYPM0nqcg_7pGBV3TEDb9STqG6qZQ8xmg-Y,233
12
12
  bluer_objects/.abcli/aka.sh,sha256=odRbw4KZb9Ld7uXny6H2pPi64_5kowKX3s68N6YvRmI,23
13
- bluer_objects/.abcli/alias.sh,sha256=3WzMt-QLN0wBtmcZAyUis7rHTQyeqy0rytozilCrVNc,527
13
+ bluer_objects/.abcli/alias.sh,sha256=CQH6GluAxKpk80vBxHWe6yoppgAes9zGGJL2daGp6iw,528
14
14
  bluer_objects/.abcli/blue_objects.sh,sha256=24qMYZImMHREqtYRFdDwIP_TaRnb9RBtUL836RtZWG0,204
15
15
  bluer_objects/.abcli/cache.sh,sha256=koMJSyjyQKIzwZ8RmtUEZOSjSRW6MEORSPRXiUdLX6k,77
16
16
  bluer_objects/.abcli/clone.sh,sha256=BvunzK-zNPIDylmh0GYuIjov3Bi62nEasfI8lGxbS3o,2580
17
17
  bluer_objects/.abcli/download.sh,sha256=xV0wQJxyBiL8paCCC9tbf-iRUmOOlv6LXAxaO6yYln4,1582
18
18
  bluer_objects/.abcli/file.sh,sha256=djcHSFS8fqlCsoDyZKmimNTzd-jOUnxbOFpL7xq_hGk,150
19
19
  bluer_objects/.abcli/gif.sh,sha256=Vr6632Dq3g5eBI5OCFmIKS0GrSpE1Jzsp7wWGR62fms,755
20
- bluer_objects/.abcli/host.sh,sha256=PW9wWhHFden4OIs8xk9u-_T-UadNNLJ5v65fVT8FWLM,555
20
+ bluer_objects/.abcli/host.sh,sha256=k1fX5qAUKECxtIBmOP6U-CXHbEUEurjZUYlrVIjo7_Q,556
21
21
  bluer_objects/.abcli/ls.sh,sha256=lur45zSv5iY0ve-BKIBpDVASWEpmExy7TjYqDASj17k,608
22
22
  bluer_objects/.abcli/metadata.sh,sha256=K9XfGe2agtAyxQRVdp22Fo4JI-BA1-zzJHf6KtCbaUo,355
23
23
  bluer_objects/.abcli/mlflow.sh,sha256=ZY0CbWO2MypGCmIV7gIcthE-FaSePav-fnMdh_NeHro,641
@@ -64,29 +64,29 @@ bluer_objects/.abcli/tests/mysql_tags.sh,sha256=gqRp3lOdME0QP0JPpB392VZECiiPYfPW
64
64
  bluer_objects/.abcli/tests/test_gif.sh,sha256=CBBLdV3KkJ-aHwSTwQ1BzoG0MNr3bgXP3aw4mETtSbc,267
65
65
  bluer_objects/.abcli/tests/version.sh,sha256=cKf8z0KJKNawIHo_6RE0M5KAJ_ZpicTzyer5PMOVXCk,166
66
66
  bluer_objects/README/__init__.py,sha256=BmSX0KzYCTAc2_wwi8QWGSt7PYKNK46IYD0VPr_xJMk,692
67
- bluer_objects/README/functions.py,sha256=itFBvh8QBA1OaSFyMHTruA3ACWgqnR2JP3f2Nu_UBp4,11038
67
+ bluer_objects/README/functions.py,sha256=hY4_F9XV4EDRkhltmb2nDkFyLiWhiXzaavDrYK-Ieoo,11039
68
68
  bluer_objects/README/items.py,sha256=-XaNCr5b_NGRkZVfIQ6hBFgJw5GIVcMJdktT3hWoam4,755
69
69
  bluer_objects/file/__init__.py,sha256=c_79ipBkKl6OFDimOev0vnaVdpUk-Bl3oJUapOreMXc,681
70
- bluer_objects/file/__main__.py,sha256=swAqrr_YmByVDqqT7A4abdwqp0xVmExoJ7UKFXzMUHo,1207
70
+ bluer_objects/file/__main__.py,sha256=YuS7WUX_jMDmeSN9pOD9hGZMNDKOcVwcqaBTyXzvy7w,1208
71
71
  bluer_objects/file/classes.py,sha256=TRgeRP2yxInPkBnywhuB4BsoBcBRA3UmQzX1dI43UxU,872
72
- bluer_objects/file/functions.py,sha256=vnH3QzuZ0Jtim5WLZao-jthU6l0mCLvR_By7YDX2hQ4,6387
73
- bluer_objects/file/load.py,sha256=-MDlhfuFa2pMYFvjHS8pFKtGyp_3exFekELkLzuuJIY,4516
74
- bluer_objects/file/save.py,sha256=USsslu3T42xRQPQpRss5RkCEi0AxCYD7_c4wgecwKwM,5527
72
+ bluer_objects/file/functions.py,sha256=CiHZLK9Mz8M3-U_dpQSlfEIAl52zPBWyQDepLoll6Ow,6389
73
+ bluer_objects/file/load.py,sha256=bNwHSPFqww9c1mUJJCZqBpOF-6rR6xftecvxWB6Ziks,4518
74
+ bluer_objects/file/save.py,sha256=a41ghjdCm25hnSsgvlsJ_Z8Jk9MCe431D4UC3E8bSTU,5530
75
75
  bluer_objects/graphics/__init__.py,sha256=Dd0kQqN7Ldvp1N9oyIirPZ6W3IdUtfPj2u21Bf4W_MI,213
76
76
  bluer_objects/graphics/__main__.py,sha256=A221gpkUDYd_S2eYz8i6KwaPumg8myaR7L5j464wC54,1909
77
77
  bluer_objects/graphics/frame.py,sha256=WcSn-0oqDw48Akmn_bwcjDC9U_kKqRYRoGWYPoKyFvY,321
78
- bluer_objects/graphics/gif.py,sha256=48g6FJp9Qant_CUE0W6j-kLRM0toOszVsjqL0Jx9Kfw,2002
79
- bluer_objects/graphics/screen.py,sha256=xQoL-OvrISmwvQDdXse6z3jc2s4Vvjy7gIbFSygjyqU,1788
78
+ bluer_objects/graphics/gif.py,sha256=V939DovUl2lNf-Yjwn-xa1VYYy8ALfQJHCJSvuEIQh0,2003
79
+ bluer_objects/graphics/screen.py,sha256=wN7fVwpNDFzzhJ3QlbqFrWoYwTuYVGDqADxYxqjQiPE,1789
80
80
  bluer_objects/graphics/signature.py,sha256=9Mtx3OrPTmxV_VytkVcZKOfjOnkqbTLakVNL70xfLe0,2283
81
81
  bluer_objects/graphics/text.py,sha256=nnJrLUD4LIurBntSeUFwBOsbhzALXrzHzfDnBVEcFKA,4382
82
82
  bluer_objects/help/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
- bluer_objects/help/__main__.py,sha256=BfmPdTzU2ZWOh30LWyfiKPYoOCUhY0uNOzAynJ0HVVk,236
83
+ bluer_objects/help/__main__.py,sha256=Dxg-JpMOIlYWZklI_J2LyiHnRui5lUwWmfM7FLRzUXA,237
84
84
  bluer_objects/help/functions.py,sha256=NcqbFEfDsHNpXXOgzd_mBYgP9HgVO5-d6mu5u7XOeE0,165
85
85
  bluer_objects/host/__init__.py,sha256=K2Sl-4KoEKNTs5ucIQgHrL4g5Gxx2ezKcjbC4b0qmN8,54
86
- bluer_objects/host/__main__.py,sha256=BrvQ0G52aE-JjosjWq6P81jnbh_5j8molAX8LEwgn-4,1769
87
- bluer_objects/host/functions.py,sha256=UL8tFmY9G6VabNAwHoISgZnGETcQt2JD2Zf9s6lDbnI,1415
88
- bluer_objects/logger/__init__.py,sha256=6hMaSHZMMnhsSiB_4iAshqbQaeD1plEBHbZimU9hdBQ,101
89
- bluer_objects/logger/matrix.py,sha256=pJdG-wcUdWyqBUl5mrnJkkOEOHAAWfNlqTj5LOfIe7E,5753
86
+ bluer_objects/host/__main__.py,sha256=n1hJhaDccH8aWom4G16Yky9qkA3L3UZICZOeGI7ZPdY,1770
87
+ bluer_objects/host/functions.py,sha256=yk_qs5zSZ7XKPWk_k4vwCgMWzIwm-29RXQne_tDJkuM,1416
88
+ bluer_objects/logger/__init__.py,sha256=2aGNbx-qBXU3IlX9BDqtrFfN25lO_uarEg22cE3-3dU,102
89
+ bluer_objects/logger/matrix.py,sha256=cPKQIhd347MH_9LaB-Ym7Mix1pqampG9MIgkeh08KA4,5757
90
90
  bluer_objects/metadata/__init__.py,sha256=B8cmMOMMO53mTwD2LJUFbSjvangSkpLqhR3oVIBsoBI,260
91
91
  bluer_objects/metadata/__main__.py,sha256=UAZBsf3AMUo-OHIgg4gS5_OowDOIO2T_zjismL3AfkI,2272
92
92
  bluer_objects/metadata/enums.py,sha256=aMlAZckl_IjPZcGZhpJa7mb9MTDQ-gWuaQtJJQeHlho,759
@@ -95,33 +95,33 @@ bluer_objects/metadata/post.py,sha256=AKc_pZaStyZKRXGPDWkK0YtavmDzwzVRv6aYw7oI9w
95
95
  bluer_objects/mlflow/__init__.py,sha256=GVPXTclqYAyu-iJoLeHSgTaMeoMpVaczFgU4PavS3QA,523
96
96
  bluer_objects/mlflow/__main__.py,sha256=uPRUT0x__m1jJ-TTRHmzSdv3AEFM2oKGqOJOG6wdSMk,5819
97
97
  bluer_objects/mlflow/cache.py,sha256=RQu9hLI6oRhCvj0N1VLcynSutjsxU4wQDo7N3m3i3ho,310
98
- bluer_objects/mlflow/logging.py,sha256=oypVz45e9PoYY9PQQprE6WBmAiQ60VTPEvVyS_WD8aY,2280
99
- bluer_objects/mlflow/models.py,sha256=zmiAyuVtlVBj9MkWCN9Ezz1AF2z-133IGwr47FR8Goc,1279
100
- bluer_objects/mlflow/objects.py,sha256=dzE1OJRMcJmqSKE27X7EoCnDTGDF3mTE1atcspVXG_0,1843
101
- bluer_objects/mlflow/runs.py,sha256=ttsyDhxF5_cUs_Ul-fvtrRIQc14ZMteAPyEMP_mR6P0,2414
102
- bluer_objects/mlflow/tags.py,sha256=MbuZMe8Udfevix6IyBRXLsqyZVG2K8PILPkqA7xevmk,2473
103
- bluer_objects/mlflow/testing.py,sha256=43WfVzQNxB-ar513J2Zfb0B3JOLaFKxbOSKOF1BkmLM,840
98
+ bluer_objects/mlflow/logging.py,sha256=XiXNCdpVTAIUqY3GovcghG_t_umr2eRELdbzvNbbf2E,2281
99
+ bluer_objects/mlflow/models.py,sha256=6xU64Irq9LWyWFwzDJoqMN8KGziSv9VbOGv1tALzf9M,1280
100
+ bluer_objects/mlflow/objects.py,sha256=aXYHLRCTt1FtDQoyPOG-doCFms7qF6Krz00Fg3kzJSM,1844
101
+ bluer_objects/mlflow/runs.py,sha256=v1IKRvxbuKkengESnG-xdUXxxNSkALMeBmfMQwrUKSs,2416
102
+ bluer_objects/mlflow/tags.py,sha256=8uBYRrE4weTLrwPqo-c4M21FEVRANf7SGCcxpoCPhuM,2475
103
+ bluer_objects/mlflow/testing.py,sha256=cJH5Ki02fJN_Xos1j9yvwQChXvMkOa9i12vtDKmkbNc,842
104
104
  bluer_objects/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
105
  bluer_objects/tests/test_README.py,sha256=5D4UV8VcjbeAPThsYVynYtVFuP8gwMAhIjEWuOQZsWs,89
106
- bluer_objects/tests/test_env.py,sha256=_okfG-X2BGLsI134CxFCrAZjqWNBv_Lou5CVZK_qzTU,586
107
- bluer_objects/tests/test_file_load_save.py,sha256=JDqB6C1D1RgRgemQmEEt6CG-YZyK6GTS0m_X9_5V2QU,2311
106
+ bluer_objects/tests/test_env.py,sha256=jErSkHga7MpD7MmQg010tBR_iZe7ZNE8g0HADeiP3fg,595
107
+ bluer_objects/tests/test_file_load_save.py,sha256=LrakotJz-GPNoF8HCT-CRLWDif6lsKmnaLzOzlSwFp0,2312
108
108
  bluer_objects/tests/test_fullname.py,sha256=xWFf9qqzDQ-4RxRyvyR9GWZyU5qNrKxru94UUKMJfPk,80
109
109
  bluer_objects/tests/test_graphics.py,sha256=REHnkItksz2M8jZHQpZuP02oKmx4ZpD9PFJtSI4uhYY,564
110
110
  bluer_objects/tests/test_graphics_frame.py,sha256=wRW3MjnfS8edNHiWi_BFJBULoLs1JlJhpFeuCoW5I6A,267
111
111
  bluer_objects/tests/test_graphics_gif.py,sha256=MB94OnSPsRozOgh-aki9PkH0IvBpHKlJDebs4N_dwVw,658
112
112
  bluer_objects/tests/test_graphics_screen.py,sha256=26GMDxImz57oWb8mFrNBtiGnctfjO0oNpzi1GLaHEro,138
113
- bluer_objects/tests/test_graphics_signature.py,sha256=2T3BlO8z5PBEwxwKo2nwHltkTZhwWxzH2hcGa8xZzMU,1587
113
+ bluer_objects/tests/test_graphics_signature.py,sha256=CVV257E3A5KBwqEDpRXShN-ful1zFwV9S-z-06oFkxM,1588
114
114
  bluer_objects/tests/test_graphics_text.py,sha256=_jLZVuAcQQYlKpATeQCBpPMa8UhKQ__bFYR1bedO5EE,314
115
115
  bluer_objects/tests/test_logger.py,sha256=DdkZqj8YOErKf6T-SWEPtU21LGfQf_O3GKrCn3H0Ujs,88
116
116
  bluer_objects/tests/test_logger_matrix.py,sha256=krJPUdlQTLD8P8EjkrlmJVw6Iylwbl8cBfj8yv8egWg,1664
117
- bluer_objects/tests/test_markdown.py,sha256=GOsvHFUlPVamMqJSCHL9BKR6C5sUHHowOMExxHoHoME,216
118
- bluer_objects/tests/test_metadata.py,sha256=y9dAEPWO2U5wbOhf41CdElywPDMm6lJG3TZJG6l2sJs,4263
119
- bluer_objects/tests/test_mlflow.py,sha256=04byWcVJJ8yjrYq_f54Lgr-tvh9L18zIX8KIbsjuTh4,1379
117
+ bluer_objects/tests/test_markdown.py,sha256=KtCWKIDs4U1M3qAGFMYhzVpdGiDV2VU8z7dCaU3s3Ec,217
118
+ bluer_objects/tests/test_metadata.py,sha256=jT39xsP4u3dq6ZWmmVwHlk0D_33Uv_-McNBdy_ba2DM,4264
119
+ bluer_objects/tests/test_mlflow.py,sha256=B7CvITThv6YmDB1la9_H2sF2VLt8urpNDQ0YnC1n8HU,1381
120
120
  bluer_objects/tests/test_objects.py,sha256=GNW4zbswrrK-kyyeCmfwACF5s1npVVXli_18q_6LaJc,4216
121
121
  bluer_objects/tests/test_path.py,sha256=JjONWyhZyMM_u1SzD1RI_iZ5vYJDUe-B51fbbHczIig,85
122
122
  bluer_objects/tests/test_version.py,sha256=Lyf3PMcA22e17BNRk_2VgPrtao6dWEgVoXo68Uds8SE,75
123
- bluer_objects-6.9.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
124
- bluer_objects-6.9.1.dist-info/METADATA,sha256=N1OZvk5eLhOJ1D5hW0YikIcEYjmIQbv5k2mYmxOhe5U,2652
125
- bluer_objects-6.9.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
126
- bluer_objects-6.9.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
127
- bluer_objects-6.9.1.dist-info/RECORD,,
123
+ bluer_objects-6.12.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
124
+ bluer_objects-6.12.1.dist-info/METADATA,sha256=jHAXyDfaC0mo7d81FYyJ0xxOYFR-LK5A8P57JPYpjdI,2656
125
+ bluer_objects-6.12.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
126
+ bluer_objects-6.12.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
127
+ bluer_objects-6.12.1.dist-info/RECORD,,