bluer-objects 6.28.1__py3-none-any.whl → 6.30.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/tests/gif.sh +1 -1
- bluer_objects/__init__.py +1 -1
- bluer_objects/config.env +0 -4
- bluer_objects/env.py +0 -7
- bluer_objects/metadata/post.py +1 -1
- bluer_objects/objects.py +0 -76
- bluer_objects/storage/WebDAVzip.py +8 -0
- bluer_objects/tests/test_env.py +0 -6
- bluer_objects/tests/test_file_load_save.py +12 -5
- bluer_objects/tests/test_graphics.py +3 -19
- bluer_objects/tests/test_graphics_gif.py +7 -10
- bluer_objects/tests/test_objects.py +39 -10
- bluer_objects/tests/test_storage.py +2 -2
- {bluer_objects-6.28.1.dist-info → bluer_objects-6.30.1.dist-info}/METADATA +2 -2
- {bluer_objects-6.28.1.dist-info → bluer_objects-6.30.1.dist-info}/RECORD +18 -18
- {bluer_objects-6.28.1.dist-info → bluer_objects-6.30.1.dist-info}/WHEEL +0 -0
- {bluer_objects-6.28.1.dist-info → bluer_objects-6.30.1.dist-info}/licenses/LICENSE +0 -0
- {bluer_objects-6.28.1.dist-info → bluer_objects-6.30.1.dist-info}/top_level.txt +0 -0
bluer_objects/__init__.py
CHANGED
bluer_objects/config.env
CHANGED
bluer_objects/env.py
CHANGED
|
@@ -30,16 +30,9 @@ abcli_path_git = get_env(
|
|
|
30
30
|
|
|
31
31
|
ABCLI_PATH_STATIC = get_env("ABCLI_PATH_STATIC")
|
|
32
32
|
|
|
33
|
-
VANWATCH_TEST_OBJECT = get_env("VANWATCH_TEST_OBJECT")
|
|
34
|
-
|
|
35
33
|
# https://www.randomtextgenerator.com/
|
|
36
34
|
DUMMY_TEXT = "This is some dummy text. This is some dummy text. This is some dummy text. This is some dummy text. This is some dummy text. This is some dummy text. This is some dummy text. This is some dummy text. This is some dummy text. This is some dummy text."
|
|
37
35
|
|
|
38
|
-
DATABRICKS_WORKSPACE = get_env("DATABRICKS_WORKSPACE")
|
|
39
|
-
|
|
40
|
-
DATABRICKS_HOST = get_env("DATABRICKS_HOST")
|
|
41
|
-
DATABRICKS_TOKEN = get_env("DATABRICKS_TOKEN")
|
|
42
|
-
|
|
43
36
|
ABCLI_MLFLOW_EXPERIMENT_PREFIX = get_env("ABCLI_MLFLOW_EXPERIMENT_PREFIX")
|
|
44
37
|
|
|
45
38
|
ABCLI_S3_OBJECT_PREFIX = "to-be-removed"
|
bluer_objects/metadata/post.py
CHANGED
bluer_objects/objects.py
CHANGED
|
@@ -12,51 +12,6 @@ from bluer_objects.host import shell
|
|
|
12
12
|
from bluer_objects.logger import logger
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
def download(
|
|
16
|
-
object_name: str,
|
|
17
|
-
filename: str = "",
|
|
18
|
-
overwrite: bool = False,
|
|
19
|
-
) -> bool:
|
|
20
|
-
if not ABCLI_S3_OBJECT_PREFIX:
|
|
21
|
-
logger.error("ABCLI_S3_OBJECT_PREFIX is not set.")
|
|
22
|
-
return False
|
|
23
|
-
|
|
24
|
-
if not object_name:
|
|
25
|
-
logger.error("object_name not found.")
|
|
26
|
-
return False
|
|
27
|
-
|
|
28
|
-
if (
|
|
29
|
-
filename
|
|
30
|
-
and not overwrite
|
|
31
|
-
and file.exists(
|
|
32
|
-
path_of(
|
|
33
|
-
object_name=object_name,
|
|
34
|
-
filename=filename,
|
|
35
|
-
)
|
|
36
|
-
)
|
|
37
|
-
):
|
|
38
|
-
return True
|
|
39
|
-
|
|
40
|
-
return (
|
|
41
|
-
shell(
|
|
42
|
-
"aws s3 cp {}/{}/{} {}".format(
|
|
43
|
-
ABCLI_S3_OBJECT_PREFIX,
|
|
44
|
-
object_name,
|
|
45
|
-
filename,
|
|
46
|
-
object_path(object_name, create=True),
|
|
47
|
-
)
|
|
48
|
-
)
|
|
49
|
-
if filename
|
|
50
|
-
else shell(
|
|
51
|
-
"aws s3 sync {}/{}/ {}".format(
|
|
52
|
-
ABCLI_S3_OBJECT_PREFIX,
|
|
53
|
-
object_name,
|
|
54
|
-
object_path(object_name, create=True),
|
|
55
|
-
)
|
|
56
|
-
)
|
|
57
|
-
)
|
|
58
|
-
|
|
59
|
-
|
|
60
15
|
def list_of_files(
|
|
61
16
|
object_name: str,
|
|
62
17
|
cloud: bool = False,
|
|
@@ -130,34 +85,3 @@ def unique_object(
|
|
|
130
85
|
logger.info(f"📂 {object_name}")
|
|
131
86
|
|
|
132
87
|
return object_name
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
def upload(
|
|
136
|
-
object_name: str,
|
|
137
|
-
filename: str = "",
|
|
138
|
-
) -> bool:
|
|
139
|
-
if not ABCLI_S3_OBJECT_PREFIX:
|
|
140
|
-
logger.error("ABCLI_S3_OBJECT_PREFIX is not set.")
|
|
141
|
-
return False
|
|
142
|
-
|
|
143
|
-
if not object_name:
|
|
144
|
-
logger.error("object_name not found.")
|
|
145
|
-
return False
|
|
146
|
-
|
|
147
|
-
return (
|
|
148
|
-
shell(
|
|
149
|
-
"aws s3 cp {} {}/{}/".format(
|
|
150
|
-
path_of(filename=filename, object_name=object_name),
|
|
151
|
-
ABCLI_S3_OBJECT_PREFIX,
|
|
152
|
-
object_name,
|
|
153
|
-
)
|
|
154
|
-
)
|
|
155
|
-
if filename
|
|
156
|
-
else shell(
|
|
157
|
-
"aws s3 sync {} {}/{}/".format(
|
|
158
|
-
object_path(object_name, create=True),
|
|
159
|
-
ABCLI_S3_OBJECT_PREFIX,
|
|
160
|
-
object_name,
|
|
161
|
-
)
|
|
162
|
-
)
|
|
163
|
-
)
|
|
@@ -31,6 +31,14 @@ class WebDAVzipInterface(StorageInterface):
|
|
|
31
31
|
object_path = objects.object_path(object_name=object_name)
|
|
32
32
|
zip_filename = f"{object_path}.zip"
|
|
33
33
|
|
|
34
|
+
try:
|
|
35
|
+
if not self.client.check(remote_path=f"{object_name}.zip"):
|
|
36
|
+
logger.warning(f"{object_name} doesn't exist.")
|
|
37
|
+
return True
|
|
38
|
+
except Exception as e:
|
|
39
|
+
logger.error(e)
|
|
40
|
+
return False
|
|
41
|
+
|
|
34
42
|
try:
|
|
35
43
|
self.client.download_sync(
|
|
36
44
|
remote_path=f"{object_name}.zip",
|
bluer_objects/tests/test_env.py
CHANGED
|
@@ -10,12 +10,6 @@ def test_required_env():
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
def test_bluer_objects_env():
|
|
13
|
-
assert env.VANWATCH_TEST_OBJECT
|
|
14
|
-
|
|
15
|
-
assert env.DATABRICKS_WORKSPACE
|
|
16
|
-
assert env.DATABRICKS_HOST
|
|
17
|
-
assert env.DATABRICKS_TOKEN
|
|
18
|
-
|
|
19
13
|
assert env.ABCLI_MLFLOW_EXPERIMENT_PREFIX
|
|
20
14
|
|
|
21
15
|
assert env.BLUER_OBJECTS_STORAGE_INTERFACE in [
|
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
import pytest
|
|
2
|
-
from typing import Callable, Union, Tuple
|
|
2
|
+
from typing import Callable, Union, Tuple
|
|
3
3
|
import numpy as np
|
|
4
4
|
|
|
5
5
|
from bluer_options import string
|
|
6
6
|
|
|
7
|
-
from bluer_objects import file, objects
|
|
7
|
+
from bluer_objects import file, objects
|
|
8
8
|
from bluer_objects.file.load import (
|
|
9
9
|
load_image,
|
|
10
10
|
load_json,
|
|
11
11
|
load_matrix,
|
|
12
12
|
load_text,
|
|
13
|
+
load_yaml,
|
|
13
14
|
)
|
|
14
15
|
from bluer_objects.file.save import (
|
|
15
16
|
save_image,
|
|
16
17
|
save_json,
|
|
17
18
|
save_matrix,
|
|
18
19
|
save_text,
|
|
20
|
+
save_yaml,
|
|
19
21
|
)
|
|
20
22
|
from bluer_objects.tests.test_objects import test_object
|
|
21
23
|
|
|
@@ -29,19 +31,24 @@ from bluer_objects.tests.test_objects import test_object
|
|
|
29
31
|
[
|
|
30
32
|
[
|
|
31
33
|
load_image,
|
|
32
|
-
"
|
|
34
|
+
"test-00.png",
|
|
33
35
|
save_image,
|
|
34
36
|
],
|
|
35
37
|
[
|
|
36
38
|
load_json,
|
|
37
|
-
"
|
|
39
|
+
"test.json",
|
|
38
40
|
save_json,
|
|
39
41
|
],
|
|
40
42
|
[
|
|
41
43
|
load_text,
|
|
42
|
-
"
|
|
44
|
+
"test.yaml",
|
|
43
45
|
save_text,
|
|
44
46
|
],
|
|
47
|
+
[
|
|
48
|
+
load_yaml,
|
|
49
|
+
"test.yaml",
|
|
50
|
+
save_yaml,
|
|
51
|
+
],
|
|
45
52
|
],
|
|
46
53
|
)
|
|
47
54
|
def test_file_load_save(
|
|
@@ -1,29 +1,13 @@
|
|
|
1
1
|
import pytest
|
|
2
|
+
import numpy as np
|
|
2
3
|
|
|
3
|
-
from blueness import module
|
|
4
|
-
|
|
5
|
-
from bluer_objects import file, objects, NAME
|
|
6
|
-
from bluer_objects import storage
|
|
7
|
-
from bluer_objects.env import VANWATCH_TEST_OBJECT
|
|
8
4
|
from bluer_objects.logger import logger
|
|
9
5
|
|
|
10
|
-
NAME = module.name(__file__, NAME)
|
|
11
|
-
|
|
12
6
|
|
|
13
7
|
@pytest.fixture
|
|
14
8
|
def test_image():
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
assert storage.download(object_name)
|
|
18
|
-
|
|
19
|
-
success, matrix = file.load_image(
|
|
20
|
-
objects.path_of(
|
|
21
|
-
"Victoria41East.jpg",
|
|
22
|
-
object_name,
|
|
23
|
-
)
|
|
24
|
-
)
|
|
25
|
-
assert success
|
|
9
|
+
matrix = (np.random.rand(512, 512, 3) * 255).astype(np.uint8)
|
|
26
10
|
|
|
27
11
|
yield matrix
|
|
28
12
|
|
|
29
|
-
logger.info(f"deleting
|
|
13
|
+
logger.info(f"deleting test_image ...")
|
|
@@ -3,28 +3,25 @@ import glob
|
|
|
3
3
|
|
|
4
4
|
from bluer_objects import objects
|
|
5
5
|
from bluer_objects import storage
|
|
6
|
+
from bluer_objects.tests.test_objects import test_object
|
|
6
7
|
from bluer_objects.graphics.gif import generate_animated_gif
|
|
7
8
|
|
|
8
9
|
|
|
9
10
|
@pytest.mark.parametrize(
|
|
10
|
-
["
|
|
11
|
+
["scale"],
|
|
11
12
|
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
13
|
+
[1],
|
|
14
|
+
[2],
|
|
14
15
|
],
|
|
15
16
|
)
|
|
16
17
|
def test_graphics_gif_generate_animated_gif(
|
|
17
|
-
|
|
18
|
+
test_object,
|
|
18
19
|
scale: int,
|
|
19
20
|
):
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
list_of_images = list(glob.glob(objects.path_of("*.png", object_name)))
|
|
23
|
-
if object_name != "void":
|
|
24
|
-
assert list_of_images
|
|
21
|
+
list_of_images = list(glob.glob(objects.path_of("*.png", test_object)))
|
|
25
22
|
|
|
26
23
|
assert generate_animated_gif(
|
|
27
24
|
list_of_images,
|
|
28
|
-
objects.path_of("test.gif",
|
|
25
|
+
objects.path_of("test.gif", test_object),
|
|
29
26
|
scale=scale,
|
|
30
27
|
)
|
|
@@ -1,24 +1,49 @@
|
|
|
1
1
|
import pytest
|
|
2
|
+
import numpy as np
|
|
2
3
|
|
|
3
|
-
from
|
|
4
|
+
from bluer_options import string
|
|
4
5
|
|
|
5
|
-
from bluer_objects import file, path, objects
|
|
6
|
+
from bluer_objects import file, path, objects
|
|
6
7
|
from bluer_objects import storage
|
|
7
|
-
from bluer_objects.env import VANWATCH_TEST_OBJECT
|
|
8
8
|
from bluer_objects.logger import logger
|
|
9
9
|
|
|
10
|
-
NAME = module.name(__file__, NAME)
|
|
11
|
-
|
|
12
10
|
|
|
13
11
|
@pytest.fixture
|
|
14
12
|
def test_object():
|
|
15
|
-
object_name =
|
|
13
|
+
object_name = objects.unique_object("test_object")
|
|
14
|
+
for suffix in range(10):
|
|
15
|
+
assert file.save_image(
|
|
16
|
+
objects.path_of(
|
|
17
|
+
object_name=object_name,
|
|
18
|
+
filename=f"test-{suffix:02d}.png",
|
|
19
|
+
),
|
|
20
|
+
(np.random.rand(512, 512, 3) * 255).astype(np.uint8),
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
depth = 10
|
|
24
|
+
data = {
|
|
25
|
+
string.random(length=depth): string.random(length=depth) for _ in range(depth)
|
|
26
|
+
}
|
|
16
27
|
|
|
17
|
-
assert
|
|
28
|
+
assert file.save_yaml(
|
|
29
|
+
objects.path_of(
|
|
30
|
+
object_name=object_name,
|
|
31
|
+
filename="test.yaml",
|
|
32
|
+
),
|
|
33
|
+
data,
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
assert file.save_json(
|
|
37
|
+
objects.path_of(
|
|
38
|
+
object_name=object_name,
|
|
39
|
+
filename="test.json",
|
|
40
|
+
),
|
|
41
|
+
data,
|
|
42
|
+
)
|
|
18
43
|
|
|
19
44
|
yield object_name
|
|
20
45
|
|
|
21
|
-
logger.info(f"deleting
|
|
46
|
+
logger.info(f"deleting test_object ...")
|
|
22
47
|
|
|
23
48
|
|
|
24
49
|
@pytest.mark.parametrize(
|
|
@@ -29,6 +54,10 @@ def test_objects_list_of_files(
|
|
|
29
54
|
test_object,
|
|
30
55
|
cloud: bool,
|
|
31
56
|
):
|
|
57
|
+
if cloud:
|
|
58
|
+
# TODO: enable when implemented
|
|
59
|
+
return
|
|
60
|
+
|
|
32
61
|
list_of_files = [
|
|
33
62
|
file.name_and_extension(filename)
|
|
34
63
|
for filename in objects.list_of_files(
|
|
@@ -37,7 +66,7 @@ def test_objects_list_of_files(
|
|
|
37
66
|
)
|
|
38
67
|
]
|
|
39
68
|
|
|
40
|
-
assert "
|
|
69
|
+
assert "test-00.png" in list_of_files
|
|
41
70
|
|
|
42
71
|
|
|
43
72
|
def test_object_object_path():
|
|
@@ -51,7 +80,7 @@ def test_objects_path_of(test_object):
|
|
|
51
80
|
assert file.exists(
|
|
52
81
|
objects.path_of(
|
|
53
82
|
object_name=test_object,
|
|
54
|
-
filename="
|
|
83
|
+
filename="test-00.png",
|
|
55
84
|
)
|
|
56
85
|
)
|
|
57
86
|
|
|
@@ -35,7 +35,7 @@ def test_storage():
|
|
|
35
35
|
filename=filename,
|
|
36
36
|
)
|
|
37
37
|
|
|
38
|
-
assert
|
|
38
|
+
assert storage.upload(object_name=object_name)
|
|
39
39
|
|
|
40
40
|
for filename in [
|
|
41
41
|
"this.yaml",
|
|
@@ -46,4 +46,4 @@ def test_storage():
|
|
|
46
46
|
filename=filename,
|
|
47
47
|
)
|
|
48
48
|
|
|
49
|
-
assert
|
|
49
|
+
assert storage.download(object_name=object_name)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bluer_objects
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.30.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
|
[](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)
|
|
55
55
|
|
|
56
|
-
built by 🌀 [`bluer_options-5.
|
|
56
|
+
built by 🌀 [`bluer_options-5.28.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`bluer_objects-6.30.1`](https://github.com/kamangir/bluer-objects).
|
|
57
57
|
|
|
58
58
|
built by 🌀 [`blueness-3.96.1`](https://github.com/kamangir/blueness).
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
bluer_objects/__init__.py,sha256
|
|
1
|
+
bluer_objects/__init__.py,sha256=-90ce4BLP_OEPVn-L9eX4kRnqwMH4tA9itNo91xL1vw,310
|
|
2
2
|
bluer_objects/__main__.py,sha256=Yqfov833_hJuRne19WrGhT5DWAPtdffpoMxeSXS7EGw,359
|
|
3
|
-
bluer_objects/config.env,sha256=
|
|
4
|
-
bluer_objects/env.py,sha256=
|
|
3
|
+
bluer_objects/config.env,sha256=TzX3WyJjwEs9V-NzK3FBUyePhb0i2ZoCja-lhDF_xJU,116
|
|
4
|
+
bluer_objects/env.py,sha256=4g_JNKr1uBh8bg39zXLYOCizlWD9_0fpDUYliNgpmj4,1225
|
|
5
5
|
bluer_objects/markdown.py,sha256=PhAwCTHIisO9qOpKHeb63U5oD9Zi8LnIQKTx_OWS4wE,938
|
|
6
|
-
bluer_objects/objects.py,sha256=
|
|
6
|
+
bluer_objects/objects.py,sha256=RUFtGn3owSvRBgIX7TRLjlMFEz_vn8fZic5Z10LhuJ8,1691
|
|
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
|
|
@@ -49,7 +49,7 @@ bluer_objects/.abcli/storage/rm.sh,sha256=kD4LY0QQXr_1EknzIHveC_I0sPFo6onfCkqtc9
|
|
|
49
49
|
bluer_objects/.abcli/storage/status.sh,sha256=4vV49LOFp7xoT2Wg9aNa44m69Z6xOsKcU7w5e2NrnX8,371
|
|
50
50
|
bluer_objects/.abcli/tests/README.sh,sha256=ToCOfpurKI1Zkl-bXzA-Yowc038jPn6Cx-_EuosgxCY,147
|
|
51
51
|
bluer_objects/.abcli/tests/clone.sh,sha256=1tRa7LV4DZUcapu4mAg6hC1p8xo1K3v-IANdr_rI11k,858
|
|
52
|
-
bluer_objects/.abcli/tests/gif.sh,sha256=
|
|
52
|
+
bluer_objects/.abcli/tests/gif.sh,sha256=Xwi7mBej7txuogTl_PG27vv42TJC0xp91AUztCq3JuI,267
|
|
53
53
|
bluer_objects/.abcli/tests/help.sh,sha256=eIKFdVt-KMqMLVzKbu2XWgvDqc6chsHnpE43qOkMmK0,1773
|
|
54
54
|
bluer_objects/.abcli/tests/host.sh,sha256=yvWymyoJgdCjrNFQuvw9rB4GWakjgyuf4iqGhswC0QA,133
|
|
55
55
|
bluer_objects/.abcli/tests/ls.sh,sha256=CbJUpEhAinnK606oWmqTumOYw0YywOMOOPh4hX5ZVAs,198
|
|
@@ -90,7 +90,7 @@ bluer_objects/metadata/__init__.py,sha256=B8cmMOMMO53mTwD2LJUFbSjvangSkpLqhR3oVI
|
|
|
90
90
|
bluer_objects/metadata/__main__.py,sha256=UAZBsf3AMUo-OHIgg4gS5_OowDOIO2T_zjismL3AfkI,2272
|
|
91
91
|
bluer_objects/metadata/enums.py,sha256=aMlAZckl_IjPZcGZhpJa7mb9MTDQ-gWuaQtJJQeHlho,759
|
|
92
92
|
bluer_objects/metadata/get.py,sha256=1eS1O-GghJ7mYCIiwcQRFwyAd1b3CUafmajAwja9HB8,1803
|
|
93
|
-
bluer_objects/metadata/post.py,sha256=
|
|
93
|
+
bluer_objects/metadata/post.py,sha256=1r0yLmIuEPrKJ_-RfALC5ajpLzmUqEjLYoIQMuI4Jjw,2062
|
|
94
94
|
bluer_objects/mlflow/__init__.py,sha256=GVPXTclqYAyu-iJoLeHSgTaMeoMpVaczFgU4PavS3QA,523
|
|
95
95
|
bluer_objects/mlflow/__main__.py,sha256=uPRUT0x__m1jJ-TTRHmzSdv3AEFM2oKGqOJOG6wdSMk,5819
|
|
96
96
|
bluer_objects/mlflow/cache.py,sha256=RQu9hLI6oRhCvj0N1VLcynSutjsxU4wQDo7N3m3i3ho,310
|
|
@@ -101,18 +101,18 @@ bluer_objects/mlflow/runs.py,sha256=v1IKRvxbuKkengESnG-xdUXxxNSkALMeBmfMQwrUKSs,
|
|
|
101
101
|
bluer_objects/mlflow/tags.py,sha256=8uBYRrE4weTLrwPqo-c4M21FEVRANf7SGCcxpoCPhuM,2475
|
|
102
102
|
bluer_objects/mlflow/testing.py,sha256=cJH5Ki02fJN_Xos1j9yvwQChXvMkOa9i12vtDKmkbNc,842
|
|
103
103
|
bluer_objects/storage/WebDAV.py,sha256=KPO8ZkxrheyB9j3f9WZJ1flAycPrN2PK7fXwTQAqlcw,2891
|
|
104
|
-
bluer_objects/storage/WebDAVzip.py,sha256=
|
|
104
|
+
bluer_objects/storage/WebDAVzip.py,sha256=xWQK8OKcd3_Q7W0DQMStvgRiICW3hsHdFZzdWpji2nw,2428
|
|
105
105
|
bluer_objects/storage/__init__.py,sha256=9Fs7z8cDGvgZ13YFRTfSPOYFbedEoicyTl2slwqNPng,1001
|
|
106
106
|
bluer_objects/storage/__main__.py,sha256=3PaNaWa6rbsuQEKMaEwBqp0YZQP6-HdnBp7cra6j4vU,866
|
|
107
107
|
bluer_objects/storage/base.py,sha256=DLD7zqgWcJqXjq1l72pxX07uo7rc-Y0PqeOy9S4EZQw,859
|
|
108
108
|
bluer_objects/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
109
|
bluer_objects/tests/test_README.py,sha256=5D4UV8VcjbeAPThsYVynYtVFuP8gwMAhIjEWuOQZsWs,89
|
|
110
|
-
bluer_objects/tests/test_env.py,sha256=
|
|
111
|
-
bluer_objects/tests/test_file_load_save.py,sha256=
|
|
110
|
+
bluer_objects/tests/test_env.py,sha256=Gjjb9FoQ6MPvFwX8pdx74aND8Ye_Bb-8XpaaKOZtw-4,547
|
|
111
|
+
bluer_objects/tests/test_file_load_save.py,sha256=mNCo3ay55ktc5L6SPpNyrpsJrGfVpYi66EgunlAN-Uw,2406
|
|
112
112
|
bluer_objects/tests/test_fullname.py,sha256=xWFf9qqzDQ-4RxRyvyR9GWZyU5qNrKxru94UUKMJfPk,80
|
|
113
|
-
bluer_objects/tests/test_graphics.py,sha256=
|
|
113
|
+
bluer_objects/tests/test_graphics.py,sha256=pAKoIEq2erodUbA_5dA80ER8vJ6P3JKXZkFYkJGifSs,239
|
|
114
114
|
bluer_objects/tests/test_graphics_frame.py,sha256=wRW3MjnfS8edNHiWi_BFJBULoLs1JlJhpFeuCoW5I6A,267
|
|
115
|
-
bluer_objects/tests/test_graphics_gif.py,sha256=
|
|
115
|
+
bluer_objects/tests/test_graphics_gif.py,sha256=5vIRJiu1XZ7sjQ2R1VpdiqZszPx4DoZnTCd9UvFjJPY,590
|
|
116
116
|
bluer_objects/tests/test_graphics_screen.py,sha256=26GMDxImz57oWb8mFrNBtiGnctfjO0oNpzi1GLaHEro,138
|
|
117
117
|
bluer_objects/tests/test_graphics_signature.py,sha256=CVV257E3A5KBwqEDpRXShN-ful1zFwV9S-z-06oFkxM,1588
|
|
118
118
|
bluer_objects/tests/test_graphics_text.py,sha256=_jLZVuAcQQYlKpATeQCBpPMa8UhKQ__bFYR1bedO5EE,314
|
|
@@ -121,12 +121,12 @@ bluer_objects/tests/test_logger_matrix.py,sha256=krJPUdlQTLD8P8EjkrlmJVw6Iylwbl8
|
|
|
121
121
|
bluer_objects/tests/test_markdown.py,sha256=KtCWKIDs4U1M3qAGFMYhzVpdGiDV2VU8z7dCaU3s3Ec,217
|
|
122
122
|
bluer_objects/tests/test_metadata.py,sha256=jT39xsP4u3dq6ZWmmVwHlk0D_33Uv_-McNBdy_ba2DM,4264
|
|
123
123
|
bluer_objects/tests/test_mlflow.py,sha256=B7CvITThv6YmDB1la9_H2sF2VLt8urpNDQ0YnC1n8HU,1381
|
|
124
|
-
bluer_objects/tests/test_objects.py,sha256=
|
|
124
|
+
bluer_objects/tests/test_objects.py,sha256=kFgD8HZbjaCUOjkaHqR5cnePz0V_sntrrQO9qijVwA4,2137
|
|
125
125
|
bluer_objects/tests/test_path.py,sha256=JjONWyhZyMM_u1SzD1RI_iZ5vYJDUe-B51fbbHczIig,85
|
|
126
|
-
bluer_objects/tests/test_storage.py,sha256=
|
|
126
|
+
bluer_objects/tests/test_storage.py,sha256=2tJ6Hev9ShId9Qn-0FXDw41HWjcl3wymcB_Bv1FJWi4,1127
|
|
127
127
|
bluer_objects/tests/test_version.py,sha256=Lyf3PMcA22e17BNRk_2VgPrtao6dWEgVoXo68Uds8SE,75
|
|
128
|
-
bluer_objects-6.
|
|
129
|
-
bluer_objects-6.
|
|
130
|
-
bluer_objects-6.
|
|
131
|
-
bluer_objects-6.
|
|
132
|
-
bluer_objects-6.
|
|
128
|
+
bluer_objects-6.30.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
129
|
+
bluer_objects-6.30.1.dist-info/METADATA,sha256=8uqMOdE8I6LPPdPfT7PtDpc5UTAhSMQ23pFnlyYqgaA,2748
|
|
130
|
+
bluer_objects-6.30.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
131
|
+
bluer_objects-6.30.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
|
|
132
|
+
bluer_objects-6.30.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|