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.
- bluer_objects/.abcli/alias.sh +1 -1
- bluer_objects/.abcli/host.sh +1 -1
- bluer_objects/README/functions.py +1 -1
- bluer_objects/__init__.py +1 -1
- bluer_objects/env.py +1 -1
- bluer_objects/file/__main__.py +1 -1
- bluer_objects/file/functions.py +2 -2
- bluer_objects/file/load.py +2 -2
- bluer_objects/file/save.py +3 -3
- bluer_objects/graphics/gif.py +1 -1
- bluer_objects/graphics/screen.py +1 -1
- bluer_objects/help/__main__.py +1 -1
- bluer_objects/host/__main__.py +1 -1
- bluer_objects/host/functions.py +1 -1
- bluer_objects/logger/__init__.py +1 -1
- bluer_objects/logger/matrix.py +2 -2
- bluer_objects/mlflow/logging.py +1 -1
- bluer_objects/mlflow/models.py +1 -1
- bluer_objects/mlflow/objects.py +1 -1
- bluer_objects/mlflow/runs.py +2 -2
- bluer_objects/mlflow/tags.py +2 -2
- bluer_objects/mlflow/testing.py +2 -2
- bluer_objects/objects.py +1 -1
- bluer_objects/path.py +2 -2
- bluer_objects/tests/test_env.py +2 -2
- bluer_objects/tests/test_file_load_save.py +1 -1
- bluer_objects/tests/test_graphics_signature.py +1 -1
- bluer_objects/tests/test_markdown.py +1 -1
- bluer_objects/tests/test_metadata.py +1 -1
- bluer_objects/tests/test_mlflow.py +2 -2
- {bluer_objects-6.9.1.dist-info → bluer_objects-6.12.1.dist-info}/METADATA +3 -3
- {bluer_objects-6.9.1.dist-info → bluer_objects-6.12.1.dist-info}/RECORD +35 -35
- {bluer_objects-6.9.1.dist-info → bluer_objects-6.12.1.dist-info}/WHEEL +0 -0
- {bluer_objects-6.9.1.dist-info → bluer_objects-6.12.1.dist-info}/licenses/LICENSE +0 -0
- {bluer_objects-6.9.1.dist-info → bluer_objects-6.12.1.dist-info}/top_level.txt +0 -0
bluer_objects/.abcli/alias.sh
CHANGED
bluer_objects/.abcli/host.sh
CHANGED
bluer_objects/__init__.py
CHANGED
bluer_objects/env.py
CHANGED
bluer_objects/file/__main__.py
CHANGED
bluer_objects/file/functions.py
CHANGED
|
@@ -6,8 +6,8 @@ import os
|
|
|
6
6
|
import shutil
|
|
7
7
|
|
|
8
8
|
from blueness import module
|
|
9
|
-
from
|
|
10
|
-
from
|
|
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
|
bluer_objects/file/load.py
CHANGED
|
@@ -4,8 +4,8 @@ import json
|
|
|
4
4
|
import numpy as np
|
|
5
5
|
|
|
6
6
|
from blueness import module
|
|
7
|
-
from
|
|
8
|
-
from
|
|
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
|
bluer_objects/file/save.py
CHANGED
|
@@ -6,9 +6,9 @@ import dill
|
|
|
6
6
|
import pandas as pd
|
|
7
7
|
|
|
8
8
|
from blueness import module
|
|
9
|
-
from
|
|
10
|
-
from
|
|
11
|
-
from
|
|
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
|
bluer_objects/graphics/gif.py
CHANGED
bluer_objects/graphics/screen.py
CHANGED
bluer_objects/help/__main__.py
CHANGED
bluer_objects/host/__main__.py
CHANGED
|
@@ -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
|
|
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
|
bluer_objects/host/functions.py
CHANGED
bluer_objects/logger/__init__.py
CHANGED
bluer_objects/logger/matrix.py
CHANGED
|
@@ -5,8 +5,8 @@ import math
|
|
|
5
5
|
import cv2
|
|
6
6
|
|
|
7
7
|
from blueness import module
|
|
8
|
-
from
|
|
9
|
-
from
|
|
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
|
bluer_objects/mlflow/logging.py
CHANGED
bluer_objects/mlflow/models.py
CHANGED
|
@@ -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
|
|
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
|
bluer_objects/mlflow/objects.py
CHANGED
|
@@ -3,7 +3,7 @@ import mlflow
|
|
|
3
3
|
from mlflow.tracking import MlflowClient
|
|
4
4
|
|
|
5
5
|
from blueness import module
|
|
6
|
-
from
|
|
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
|
bluer_objects/mlflow/runs.py
CHANGED
|
@@ -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
|
|
9
|
-
from
|
|
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
|
bluer_objects/mlflow/tags.py
CHANGED
|
@@ -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
|
|
7
|
-
from
|
|
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
|
bluer_objects/mlflow/testing.py
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import mlflow
|
|
2
2
|
|
|
3
3
|
from blueness import module
|
|
4
|
-
from
|
|
5
|
-
from
|
|
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
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
|
|
8
|
-
from
|
|
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
|
bluer_objects/tests/test_env.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import pytest
|
|
2
2
|
|
|
3
|
-
from
|
|
4
|
-
from
|
|
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.
|
|
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:
|
|
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
|
[](https://github.com/kamangir/bluer-objects/actions/workflows/pylint.yml) [](https://github.com/kamangir/bluer-objects/actions/workflows/pytest.yml) [](https://github.com/kamangir/bluer-objects/actions/workflows/bashtest.yml) [](https://pypi.org/project/bluer-objects/) [](https://pypistats.org/packages/bluer-objects)
|
|
54
54
|
|
|
55
|
-
built by 🌀 [`
|
|
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=
|
|
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=
|
|
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=
|
|
7
|
-
bluer_objects/path.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
73
|
-
bluer_objects/file/load.py,sha256
|
|
74
|
-
bluer_objects/file/save.py,sha256=
|
|
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=
|
|
79
|
-
bluer_objects/graphics/screen.py,sha256=
|
|
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=
|
|
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=
|
|
87
|
-
bluer_objects/host/functions.py,sha256=
|
|
88
|
-
bluer_objects/logger/__init__.py,sha256=
|
|
89
|
-
bluer_objects/logger/matrix.py,sha256=
|
|
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=
|
|
99
|
-
bluer_objects/mlflow/models.py,sha256=
|
|
100
|
-
bluer_objects/mlflow/objects.py,sha256=
|
|
101
|
-
bluer_objects/mlflow/runs.py,sha256=
|
|
102
|
-
bluer_objects/mlflow/tags.py,sha256=
|
|
103
|
-
bluer_objects/mlflow/testing.py,sha256=
|
|
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=
|
|
107
|
-
bluer_objects/tests/test_file_load_save.py,sha256=
|
|
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=
|
|
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=
|
|
118
|
-
bluer_objects/tests/test_metadata.py,sha256=
|
|
119
|
-
bluer_objects/tests/test_mlflow.py,sha256=
|
|
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.
|
|
124
|
-
bluer_objects-6.
|
|
125
|
-
bluer_objects-6.
|
|
126
|
-
bluer_objects-6.
|
|
127
|
-
bluer_objects-6.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|