bluer-objects 6.136.1__py3-none-any.whl → 6.139.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/abcli.sh +6 -0
- bluer_objects/.abcli/mlflow/browse.sh +2 -0
- bluer_objects/.abcli/mlflow/deploy.sh +3 -0
- bluer_objects/.abcli/mlflow.sh +0 -2
- bluer_objects/__init__.py +1 -1
- bluer_objects/env.py +10 -0
- bluer_objects/sample.env +2 -0
- bluer_objects/tests/test_env.py +2 -0
- {bluer_objects-6.136.1.dist-info → bluer_objects-6.139.1.dist-info}/METADATA +2 -2
- {bluer_objects-6.136.1.dist-info → bluer_objects-6.139.1.dist-info}/RECORD +13 -13
- {bluer_objects-6.136.1.dist-info → bluer_objects-6.139.1.dist-info}/WHEEL +0 -0
- {bluer_objects-6.136.1.dist-info → bluer_objects-6.139.1.dist-info}/licenses/LICENSE +0 -0
- {bluer_objects-6.136.1.dist-info → bluer_objects-6.139.1.dist-info}/top_level.txt +0 -0
bluer_objects/.abcli/abcli.sh
CHANGED
|
@@ -5,5 +5,11 @@ bluer_ai_source_caller_suffix_path /tests
|
|
|
5
5
|
bluer_ai_env_dot_load \
|
|
6
6
|
caller,plugin=bluer_objects,suffix=/../..
|
|
7
7
|
|
|
8
|
+
if [[ "$MLFLOW_DEPLOYMENT" == "local" ]]; then
|
|
9
|
+
export MLFLOW_TRACKING_URI=$HOME/mlflow
|
|
10
|
+
else
|
|
11
|
+
export MLFLOW_TRACKING_URI=$MLFLOW_DEPLOYMENT
|
|
12
|
+
fi
|
|
13
|
+
|
|
8
14
|
bluer_ai_env_dot_load \
|
|
9
15
|
caller,filename=config.env,suffix=/..
|
|
@@ -5,6 +5,8 @@ function bluer_objects_mlflow_browse() {
|
|
|
5
5
|
local browse_experiment=$(bluer_ai_option_int "$options" experiment 0)
|
|
6
6
|
|
|
7
7
|
local url=http://localhost:5001/#
|
|
8
|
+
[[ "$MLFLOW_DEPLOYMENT" != "local" ]] &&
|
|
9
|
+
url=$MLFLOW_TRACKING_URI
|
|
8
10
|
|
|
9
11
|
if [ $(bluer_ai_option_int "$options" databricks 0) == 1 ]; then
|
|
10
12
|
url="https://accounts.cloud.databricks.com/"
|
bluer_objects/.abcli/mlflow.sh
CHANGED
bluer_objects/__init__.py
CHANGED
bluer_objects/env.py
CHANGED
|
@@ -37,6 +37,16 @@ ABCLI_MLFLOW_EXPERIMENT_PREFIX = get_env("ABCLI_MLFLOW_EXPERIMENT_PREFIX")
|
|
|
37
37
|
|
|
38
38
|
BLUER_OBJECTS_STORAGE_INTERFACE = get_env("BLUER_OBJECTS_STORAGE_INTERFACE")
|
|
39
39
|
|
|
40
|
+
MLFLOW_DEPLOYMENT = get_env("MLFLOW_DEPLOYMENT", "local")
|
|
41
|
+
if MLFLOW_DEPLOYMENT == "local":
|
|
42
|
+
MLFLOW_TRACKING_URI = os.path.join(
|
|
43
|
+
os.environ.get("HOME"),
|
|
44
|
+
"mlflow",
|
|
45
|
+
)
|
|
46
|
+
else:
|
|
47
|
+
MLFLOW_TRACKING_URI = MLFLOW_DEPLOYMENT
|
|
48
|
+
os.environ["MLFLOW_TRACKING_URI"] = MLFLOW_TRACKING_URI
|
|
49
|
+
|
|
40
50
|
WEBDAV_HOSTNAME = get_env("WEBDAV_HOSTNAME")
|
|
41
51
|
WEBDAV_LOGIN = get_env("WEBDAV_LOGIN")
|
|
42
52
|
WEBDAV_PASSWORD = get_env("WEBDAV_PASSWORD")
|
bluer_objects/sample.env
CHANGED
bluer_objects/tests/test_env.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bluer_objects
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.139.1
|
|
4
4
|
Summary: 🌀 Object management in Bash.
|
|
5
5
|
Home-page: https://github.com/kamangir/bluer-objects
|
|
6
6
|
Author: Arash Abadpour (Kamangir)
|
|
@@ -63,6 +63,6 @@ pip install bluer-objects
|
|
|
63
63
|
|
|
64
64
|
[](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)
|
|
65
65
|
|
|
66
|
-
built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_objects-6.
|
|
66
|
+
built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_objects-6.139.1`](https://github.com/kamangir/bluer-objects).
|
|
67
67
|
|
|
68
68
|
built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
bluer_objects/__init__.py,sha256=
|
|
1
|
+
bluer_objects/__init__.py,sha256=ITgRDWbzpMhQB_Kbo4IZwv4Csjcnoay3n1hyRP41Ij4,315
|
|
2
2
|
bluer_objects/__main__.py,sha256=Yqfov833_hJuRne19WrGhT5DWAPtdffpoMxeSXS7EGw,359
|
|
3
3
|
bluer_objects/config.env,sha256=OskMqZi0CuvYM4TDq_wzrG7UonxvV0pV6zwObwHaLTI,90
|
|
4
|
-
bluer_objects/env.py,sha256=
|
|
4
|
+
bluer_objects/env.py,sha256=QgXp6tpT_EoFyH83Fi9G25zaUCPP365YfShnVyW-310,1477
|
|
5
5
|
bluer_objects/markdown.py,sha256=PhAwCTHIisO9qOpKHeb63U5oD9Zi8LnIQKTx_OWS4wE,938
|
|
6
6
|
bluer_objects/objects.py,sha256=EYzA1vKngY2c_gdMKnUfrKVUcf-5wpFKgBFaVJA4cLE,1626
|
|
7
7
|
bluer_objects/path.py,sha256=9uspZqObI29NerVDF30uILLaouDtloASh0Mywyq2_ew,3946
|
|
8
|
-
bluer_objects/sample.env,sha256=
|
|
8
|
+
bluer_objects/sample.env,sha256=tvdQQyeWqg-cBlCXW3q0VT_bJbA1yM3nd6v6_1Hhdfs,72
|
|
9
9
|
bluer_objects/urls.py,sha256=paHaYlLMQOI46-EYNch5ohu9Q09BMkF2vvJy1QufrVI,19
|
|
10
|
-
bluer_objects/.abcli/abcli.sh,sha256=
|
|
10
|
+
bluer_objects/.abcli/abcli.sh,sha256=zcqSfpuonb7u9YZCO6jbYeU63pTi0WD5q7lBMSUBXqw,352
|
|
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=g0avaLQ6SNbCNuP54-VZW2GTlMTcn0eQp_MBlCsu_W0,719
|
|
@@ -20,16 +20,16 @@ bluer_objects/.abcli/gif.sh,sha256=sZZZWAvwR7bTf6gF70b0l_1tw4-HOswh93iwUAQilEI,8
|
|
|
20
20
|
bluer_objects/.abcli/host.sh,sha256=N-Gdsk-mR2V2MvFlwlIVwaiGkQyV1DoM5UdhQrpUsls,573
|
|
21
21
|
bluer_objects/.abcli/ls.sh,sha256=-jkT5anPqnTMTzvJZXujmXE705YprYCUbxOQTNFCTrc,417
|
|
22
22
|
bluer_objects/.abcli/metadata.sh,sha256=EXBB39nn5PRRryIlfetIpR4fPQ-4eDg7Hnee9g1JXrI,377
|
|
23
|
-
bluer_objects/.abcli/mlflow.sh,sha256=
|
|
23
|
+
bluer_objects/.abcli/mlflow.sh,sha256=7ylwHrQas-QbAJ8SfDJiN3zbuU6ifLUBEAhPRw38Hpc,625
|
|
24
24
|
bluer_objects/.abcli/object.sh,sha256=Zh2ZMFqBSIOHwwwLegCMxJRfaYCbPp1EJMT3LvcFzhE,739
|
|
25
25
|
bluer_objects/.abcli/select.sh,sha256=CVcqVRN6bMLtEo0SptZS_QGY90_lT1Su71DlcVyddXo,878
|
|
26
26
|
bluer_objects/.abcli/storage.sh,sha256=iYHxdXJI9sGR-WKxDuYKOB06FccSQ0G0-uZn9UJQGnc,321
|
|
27
27
|
bluer_objects/.abcli/upload.sh,sha256=vRkzfDzze0MYMoUalzY6QzNC2DXlTFfm2nSMfNSB-9k,529
|
|
28
28
|
bluer_objects/.abcli/metadata/get.sh,sha256=6W9x0akZwwozTyOlKCW_0MndYVUAL4v1HSUPxTAsfKA,835
|
|
29
29
|
bluer_objects/.abcli/metadata/post.sh,sha256=UdvZNuRu6_NcyRVvDMFZ9GEwOm3K8rsNqM0FFr9LskA,570
|
|
30
|
-
bluer_objects/.abcli/mlflow/browse.sh,sha256=
|
|
30
|
+
bluer_objects/.abcli/mlflow/browse.sh,sha256=jPHAKLgG7yDLCdSAW5acVmCOcOltAkZQ8FrttrX401s,1166
|
|
31
31
|
bluer_objects/.abcli/mlflow/cache.sh,sha256=tpdCqL3jMFpfRmYS6UTgLiycv43_z_N_J1ux2XsDgdA,556
|
|
32
|
-
bluer_objects/.abcli/mlflow/deploy.sh,sha256=
|
|
32
|
+
bluer_objects/.abcli/mlflow/deploy.sh,sha256=oTdFUDOAtDhREstbQCOZkgwJgdua9Tp8w9aYSV-C4yc,772
|
|
33
33
|
bluer_objects/.abcli/mlflow/list_registered_models.sh,sha256=cZGtAzfLx-kW3-zi0mLrfhzk4B8KyUL2sq2tD7lK5q8,191
|
|
34
34
|
bluer_objects/.abcli/mlflow/log_artifacts.sh,sha256=3sCdDHoRVFqCg_DPF8zw3HSAj8Grr-Mbwmf0iUlDmrk,243
|
|
35
35
|
bluer_objects/.abcli/mlflow/log_run.sh,sha256=-oDsAxVnw3wot-Jk4mju_6fgW_6K2VnhlWtAtom-tlc,231
|
|
@@ -121,7 +121,7 @@ bluer_objects/testing/__main__.py,sha256=hhJV9qn0V_8FxzNDcoHCHr4A7zf9UudnNGJCAPk
|
|
|
121
121
|
bluer_objects/testing/functions.py,sha256=AXAfzWLcEPkbSYTehdahshjKJ45C4IJkRs_TgrHOntc,1355
|
|
122
122
|
bluer_objects/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
123
|
bluer_objects/tests/test_README.py,sha256=5D4UV8VcjbeAPThsYVynYtVFuP8gwMAhIjEWuOQZsWs,89
|
|
124
|
-
bluer_objects/tests/test_env.py,sha256=
|
|
124
|
+
bluer_objects/tests/test_env.py,sha256=UxHI0xStpfg1mfNN9QlMBVr7rQsdoEJYQ6vCQh5gExU,689
|
|
125
125
|
bluer_objects/tests/test_file_download.py,sha256=1_adHYqgSifkdP-I7TQVW0t8MLCujQ61fvRbcrSkcmg,512
|
|
126
126
|
bluer_objects/tests/test_file_load_save.py,sha256=5uUBjyiBglzNn9sAWmjQ8zLnElJ6osJQe2lnQgKk9FQ,2408
|
|
127
127
|
bluer_objects/tests/test_file_load_save_text.py,sha256=3XnBGlv3KZvheHY-RlX1Su6LOBkkn57pkf9_dXR81r8,1017
|
|
@@ -145,8 +145,8 @@ bluer_objects/tests/test_storage_webdav_request.py,sha256=hJVwUBcu4fo1rsRRjk0U4c
|
|
|
145
145
|
bluer_objects/tests/test_storage_webdav_zip.py,sha256=aFwqREkbEIvJRvkC0Wyfirl_f4tRhtSD3lpNSmQ_BeI,953
|
|
146
146
|
bluer_objects/tests/test_testing.py,sha256=d2NH435yqJBl9wmfMqGGd-f0Y0jsL2QhHUXkty9AwPA,235
|
|
147
147
|
bluer_objects/tests/test_version.py,sha256=Lyf3PMcA22e17BNRk_2VgPrtao6dWEgVoXo68Uds8SE,75
|
|
148
|
-
bluer_objects-6.
|
|
149
|
-
bluer_objects-6.
|
|
150
|
-
bluer_objects-6.
|
|
151
|
-
bluer_objects-6.
|
|
152
|
-
bluer_objects-6.
|
|
148
|
+
bluer_objects-6.139.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
149
|
+
bluer_objects-6.139.1.dist-info/METADATA,sha256=-6tcYhaaYu5rG0CrZTzqZYEBLLfe1BHsg5TmgugdHEk,3554
|
|
150
|
+
bluer_objects-6.139.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
151
|
+
bluer_objects-6.139.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
|
|
152
|
+
bluer_objects-6.139.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|