bluer-objects 6.104.1__py3-none-any.whl → 6.464.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.
- bluer_objects/.abcli/abcli.sh +6 -0
- bluer_objects/.abcli/alias.sh +13 -6
- bluer_objects/.abcli/assets/cd.sh +20 -0
- bluer_objects/.abcli/assets/mv.sh +34 -0
- bluer_objects/.abcli/assets/publish.sh +40 -0
- bluer_objects/.abcli/assets.sh +15 -0
- bluer_objects/.abcli/create_test_asset.sh +10 -0
- bluer_objects/.abcli/download.sh +3 -1
- bluer_objects/.abcli/file.sh +15 -4
- bluer_objects/.abcli/gif.sh +18 -0
- bluer_objects/.abcli/host.sh +23 -7
- bluer_objects/.abcli/ls.sh +19 -8
- bluer_objects/.abcli/metadata/download.sh +9 -0
- bluer_objects/.abcli/metadata/edit.sh +15 -0
- bluer_objects/.abcli/metadata/upload.sh +9 -0
- bluer_objects/.abcli/mlflow/browse.sh +2 -0
- bluer_objects/.abcli/mlflow/deploy.sh +21 -5
- bluer_objects/.abcli/mlflow/lock/lock.sh +11 -0
- bluer_objects/.abcli/mlflow/lock/unlock.sh +12 -0
- bluer_objects/.abcli/mlflow/lock.sh +15 -0
- bluer_objects/.abcli/mlflow/tags/search.sh +1 -5
- bluer_objects/.abcli/mlflow.sh +0 -2
- bluer_objects/.abcli/pdf/convert.sh +92 -0
- bluer_objects/.abcli/pdf.sh +15 -0
- bluer_objects/.abcli/storage/clear.sh +2 -0
- bluer_objects/.abcli/tests/clone.sh +2 -3
- bluer_objects/.abcli/tests/create_test_asset.sh +16 -0
- bluer_objects/.abcli/tests/file.sh +64 -0
- bluer_objects/.abcli/tests/gif.sh +3 -3
- bluer_objects/.abcli/tests/help.sh +23 -7
- bluer_objects/.abcli/tests/ls.sh +11 -4
- bluer_objects/.abcli/tests/metadata.sh +35 -0
- bluer_objects/.abcli/tests/mlflow_lock.sh +30 -0
- bluer_objects/.abcli/tests/mlflow_tags.sh +1 -1
- bluer_objects/.abcli/tests/open.sh +11 -0
- bluer_objects/.abcli/tests/open_gif_open.sh +14 -0
- bluer_objects/.abcli/tests/pdf.sh +39 -0
- bluer_objects/.abcli/tests/storage_clear.sh +11 -0
- bluer_objects/.abcli/tests/storage_public_upload.sh +25 -0
- bluer_objects/.abcli/tests/storage_status.sh +12 -0
- bluer_objects/.abcli/tests/{storage.sh → storage_upload_download.sh} +26 -8
- bluer_objects/.abcli/upload.sh +26 -2
- bluer_objects/README/__init__.py +7 -22
- bluer_objects/README/alias.py +67 -0
- bluer_objects/README/build/__init__.py +0 -0
- bluer_objects/README/build/aliases.py +23 -0
- bluer_objects/README/build/docs.py +23 -0
- bluer_objects/README/build/modules.py +9 -0
- bluer_objects/README/consts.py +44 -0
- bluer_objects/README/functions.py +154 -204
- bluer_objects/README/items.py +78 -6
- bluer_objects/README/process/__init__.py +0 -0
- bluer_objects/README/process/assets.py +36 -0
- bluer_objects/README/process/details.py +20 -0
- bluer_objects/README/process/envs.py +23 -0
- bluer_objects/README/process/help.py +27 -0
- bluer_objects/README/process/include.py +40 -0
- bluer_objects/README/process/legacy.py +21 -0
- bluer_objects/README/process/mermaid.py +20 -0
- bluer_objects/README/process/national_internet.py +55 -0
- bluer_objects/README/process/objects.py +32 -0
- bluer_objects/README/process/signature.py +35 -0
- bluer_objects/README/process/title.py +44 -0
- bluer_objects/README/process/variables.py +12 -0
- bluer_objects/__init__.py +1 -1
- bluer_objects/assets/__init__.py +0 -0
- bluer_objects/assets/__main__.py +57 -0
- bluer_objects/assets/functions.py +62 -0
- bluer_objects/config.env +13 -1
- bluer_objects/env.py +27 -1
- bluer_objects/file/__main__.py +52 -7
- bluer_objects/file/functions.py +21 -4
- bluer_objects/file/load.py +2 -9
- bluer_objects/file/save.py +17 -24
- bluer_objects/graphics/__main__.py +7 -0
- bluer_objects/graphics/gif.py +11 -7
- bluer_objects/graphics/screen.py +9 -8
- bluer_objects/help/assets.py +93 -0
- bluer_objects/help/create_test_asset.py +22 -0
- bluer_objects/help/download.py +17 -3
- bluer_objects/help/file.py +59 -0
- bluer_objects/help/functions.py +9 -1
- bluer_objects/help/gif.py +25 -0
- bluer_objects/help/host.py +6 -4
- bluer_objects/help/ls.py +26 -3
- bluer_objects/help/metadata.py +51 -0
- bluer_objects/help/mlflow/__init__.py +23 -2
- bluer_objects/help/mlflow/cache.py +2 -4
- bluer_objects/help/mlflow/lock.py +52 -0
- bluer_objects/help/mlflow/tags.py +34 -23
- bluer_objects/help/pdf.py +67 -0
- bluer_objects/help/upload.py +10 -3
- bluer_objects/host/functions.py +4 -1
- bluer_objects/logger/confusion_matrix.py +76 -0
- bluer_objects/logger/image.py +110 -0
- bluer_objects/logger/stitch.py +107 -0
- bluer_objects/markdown.py +8 -6
- bluer_objects/metadata/__init__.py +1 -0
- bluer_objects/metadata/flatten.py +27 -0
- bluer_objects/mlflow/__init__.py +1 -1
- bluer_objects/mlflow/__main__.py +49 -31
- bluer_objects/mlflow/lock/__init__.py +1 -0
- bluer_objects/mlflow/lock/__main__.py +58 -0
- bluer_objects/mlflow/lock/functions.py +121 -0
- bluer_objects/mlflow/logging.py +53 -41
- bluer_objects/mlflow/models.py +7 -0
- bluer_objects/mlflow/objects.py +7 -0
- bluer_objects/mlflow/runs.py +10 -1
- bluer_objects/mlflow/serverless/__init__.py +3 -0
- bluer_objects/mlflow/serverless/api.py +88 -0
- bluer_objects/mlflow/serverless/read.py +19 -0
- bluer_objects/mlflow/serverless/search.py +35 -0
- bluer_objects/mlflow/serverless/write.py +42 -0
- bluer_objects/mlflow/tags.py +59 -9
- bluer_objects/objects.py +3 -1
- bluer_objects/pdf/__init__.py +1 -0
- bluer_objects/pdf/__main__.py +78 -0
- bluer_objects/pdf/convert/__init__.py +0 -0
- bluer_objects/pdf/convert/batch.py +54 -0
- bluer_objects/pdf/convert/combination.py +32 -0
- bluer_objects/pdf/convert/convert.py +110 -0
- bluer_objects/pdf/convert/image.py +53 -0
- bluer_objects/pdf/convert/md.py +97 -0
- bluer_objects/pdf/convert/missing.py +96 -0
- bluer_objects/pdf/convert/pdf.py +37 -0
- bluer_objects/sample.env +6 -0
- bluer_objects/storage/WebDAV.py +11 -7
- bluer_objects/storage/WebDAVrequest.py +360 -0
- bluer_objects/storage/WebDAVzip.py +26 -29
- bluer_objects/storage/__init__.py +28 -1
- bluer_objects/storage/__main__.py +40 -6
- bluer_objects/storage/base.py +84 -5
- bluer_objects/storage/policies.py +7 -0
- bluer_objects/storage/s3.py +367 -0
- bluer_objects/testing/__main__.py +6 -0
- bluer_objects/tests/test_README_consts.py +71 -0
- bluer_objects/tests/test_README_items.py +128 -0
- bluer_objects/tests/test_alias.py +33 -0
- bluer_objects/tests/test_env.py +42 -7
- bluer_objects/tests/test_file_download.py +30 -0
- bluer_objects/tests/test_file_load_save.py +1 -2
- bluer_objects/tests/test_file_load_save_text.py +46 -0
- bluer_objects/tests/test_graphics_gif.py +2 -0
- bluer_objects/tests/test_log_image_grid.py +29 -0
- bluer_objects/tests/test_logger_confusion_matrix.py +18 -0
- bluer_objects/tests/test_logger_matrix.py +2 -2
- bluer_objects/tests/test_logger_stitch_images.py +47 -0
- bluer_objects/tests/test_metadata.py +12 -6
- bluer_objects/tests/test_metadata_flatten.py +109 -0
- bluer_objects/tests/test_mlflow.py +114 -5
- bluer_objects/tests/test_mlflow_lock.py +26 -0
- bluer_objects/tests/test_objects.py +2 -0
- bluer_objects/tests/test_shell.py +34 -0
- bluer_objects/tests/test_storage.py +8 -21
- bluer_objects/tests/test_storage_base.py +39 -0
- bluer_objects/tests/test_storage_s3.py +67 -0
- bluer_objects/tests/test_storage_webdav_request.py +75 -0
- bluer_objects/tests/test_storage_webdav_zip.py +42 -0
- bluer_objects/tests/test_web_is_accessible.py +11 -0
- {bluer_objects-6.104.1.dist-info → bluer_objects-6.464.1.dist-info}/METADATA +20 -11
- bluer_objects-6.464.1.dist-info/RECORD +228 -0
- {bluer_objects-6.104.1.dist-info → bluer_objects-6.464.1.dist-info}/WHEEL +1 -1
- bluer_objects/.abcli/storage/download_file.sh +0 -9
- bluer_objects/.abcli/storage/exists.sh +0 -8
- bluer_objects/.abcli/storage/list.sh +0 -8
- bluer_objects/.abcli/storage/rm.sh +0 -11
- bluer_objects/.abcli/tests/mlflow_test.sh +0 -7
- bluer_objects-6.104.1.dist-info/RECORD +0 -143
- {bluer_objects-6.104.1.dist-info → bluer_objects-6.464.1.dist-info}/licenses/LICENSE +0 -0
- {bluer_objects-6.104.1.dist-info → bluer_objects-6.464.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
bluer_objects/__init__.py,sha256=FYzWYWkXn7_CWW0V23cW3Etkr21uQiwLE_WSvJL6QR0,315
|
|
2
|
+
bluer_objects/__main__.py,sha256=Yqfov833_hJuRne19WrGhT5DWAPtdffpoMxeSXS7EGw,359
|
|
3
|
+
bluer_objects/config.env,sha256=QqzypWJ2zTujL1WRXnrkR2tSIbZSItJ7FvpyGdrPMO4,331
|
|
4
|
+
bluer_objects/env.py,sha256=HaTuWMWez7JWDafOj6HkROLLffT6oApvtCNbkXOMLtQ,2199
|
|
5
|
+
bluer_objects/markdown.py,sha256=23dvQTR0wY_SSeCw4EgYwCBBY0Oe9C1I9njqn0KvcaQ,1000
|
|
6
|
+
bluer_objects/objects.py,sha256=WLOhB64cYa_KmOYTd7d8XJFjR4yn8o_yhJ6CIYvpWEA,1664
|
|
7
|
+
bluer_objects/path.py,sha256=9uspZqObI29NerVDF30uILLaouDtloASh0Mywyq2_ew,3946
|
|
8
|
+
bluer_objects/sample.env,sha256=pk6q6VaCMTqAQmtk0WGzSLIW3bOQkS_sVqhzW59Of34,162
|
|
9
|
+
bluer_objects/urls.py,sha256=paHaYlLMQOI46-EYNch5ohu9Q09BMkF2vvJy1QufrVI,19
|
|
10
|
+
bluer_objects/.abcli/abcli.sh,sha256=zcqSfpuonb7u9YZCO6jbYeU63pTi0WD5q7lBMSUBXqw,352
|
|
11
|
+
bluer_objects/.abcli/actions.sh,sha256=HZI-X5KUy6bXEHmxywfBN1zbHalU0mcTblTQ2HvIfOE,236
|
|
12
|
+
bluer_objects/.abcli/aka.sh,sha256=odRbw4KZb9Ld7uXny6H2pPi64_5kowKX3s68N6YvRmI,23
|
|
13
|
+
bluer_objects/.abcli/alias.sh,sha256=5EL6EVogYJsgcr6L8aHmTHwrlyf0a9qnX6gK_nZJf3A,788
|
|
14
|
+
bluer_objects/.abcli/assets.sh,sha256=LFdj9h5Ka16eYZ4EnEx2o6N7htNGKJ2OknnaM0VJfVI,327
|
|
15
|
+
bluer_objects/.abcli/bluer_objects.sh,sha256=x7qf8hSAp3dAl0Hes4J07vL6qP-mWFUkJhvUXzTJC_8,210
|
|
16
|
+
bluer_objects/.abcli/clone.sh,sha256=KqC5d4MAXwo7UZGhKnfCq9k9CCSl3I1dpU1igYs0Yrs,1975
|
|
17
|
+
bluer_objects/.abcli/create_test_asset.sh,sha256=ONIdad_WRjZWdW6V2RalRW2qSJwybEwzU-_KsvaJ9og,245
|
|
18
|
+
bluer_objects/.abcli/download.sh,sha256=SKv4JyjcWjOutK95-gurCqbRjpmcrmzxASEEdT23Ob4,650
|
|
19
|
+
bluer_objects/.abcli/file.sh,sha256=5yG-QCqQyudp7ZhJy6PcVcmN40vynUI-URMmO6IO21I,374
|
|
20
|
+
bluer_objects/.abcli/gif.sh,sha256=cskDoi_BJq5phOAqgJouxH2biC2z3LlDgd9JHAQqvM0,1363
|
|
21
|
+
bluer_objects/.abcli/host.sh,sha256=rOTrxGEYk4ikJGSvqCzNNfJDVEvAebOqGutVqJpSRxs,1051
|
|
22
|
+
bluer_objects/.abcli/ls.sh,sha256=9IGfGopZNdpkSwA31hXsRG7Ap0KzY3SGAM9takLQe24,639
|
|
23
|
+
bluer_objects/.abcli/metadata.sh,sha256=EXBB39nn5PRRryIlfetIpR4fPQ-4eDg7Hnee9g1JXrI,377
|
|
24
|
+
bluer_objects/.abcli/mlflow.sh,sha256=7ylwHrQas-QbAJ8SfDJiN3zbuU6ifLUBEAhPRw38Hpc,625
|
|
25
|
+
bluer_objects/.abcli/object.sh,sha256=Zh2ZMFqBSIOHwwwLegCMxJRfaYCbPp1EJMT3LvcFzhE,739
|
|
26
|
+
bluer_objects/.abcli/pdf.sh,sha256=Z6vBzemOjRBxOt7tPjm0gzVNj2fzCuLtSsKW3vODZB8,312
|
|
27
|
+
bluer_objects/.abcli/select.sh,sha256=CVcqVRN6bMLtEo0SptZS_QGY90_lT1Su71DlcVyddXo,878
|
|
28
|
+
bluer_objects/.abcli/storage.sh,sha256=iYHxdXJI9sGR-WKxDuYKOB06FccSQ0G0-uZn9UJQGnc,321
|
|
29
|
+
bluer_objects/.abcli/upload.sh,sha256=CFw2GkqYDbjOm2dAqg3gmcVEFohjPvjc2ttl15NOmlU,1208
|
|
30
|
+
bluer_objects/.abcli/assets/cd.sh,sha256=s5V_Jz8deJcYgYvx9ZnGZt4HBgdk9AngJ5p6BFVXqfk,474
|
|
31
|
+
bluer_objects/.abcli/assets/mv.sh,sha256=JQO-v371YeCeaUZIqnAMLtm6ifAOjSdVWkTNJuEgqtM,886
|
|
32
|
+
bluer_objects/.abcli/assets/publish.sh,sha256=KgQf-_uOjVHNJVCeGVAaHgrZQYxBlvPoJl6pN8-xMv0,1025
|
|
33
|
+
bluer_objects/.abcli/metadata/download.sh,sha256=BI0qqyHxKsrd8atir2JNiNUmpZP_CObj_msjlP5uRcQ,207
|
|
34
|
+
bluer_objects/.abcli/metadata/edit.sh,sha256=y4tqmAEgj6SybBkqPK8l8lj_hYhetulCo1x7ngcevy0,387
|
|
35
|
+
bluer_objects/.abcli/metadata/get.sh,sha256=6W9x0akZwwozTyOlKCW_0MndYVUAL4v1HSUPxTAsfKA,835
|
|
36
|
+
bluer_objects/.abcli/metadata/post.sh,sha256=UdvZNuRu6_NcyRVvDMFZ9GEwOm3K8rsNqM0FFr9LskA,570
|
|
37
|
+
bluer_objects/.abcli/metadata/upload.sh,sha256=3h61kneN8TIxY9eYb9WEZWqhoT_XlDrcG7_-rdMDzDU,203
|
|
38
|
+
bluer_objects/.abcli/mlflow/browse.sh,sha256=jPHAKLgG7yDLCdSAW5acVmCOcOltAkZQ8FrttrX401s,1166
|
|
39
|
+
bluer_objects/.abcli/mlflow/cache.sh,sha256=tpdCqL3jMFpfRmYS6UTgLiycv43_z_N_J1ux2XsDgdA,556
|
|
40
|
+
bluer_objects/.abcli/mlflow/deploy.sh,sha256=O8JuyIE2NgA8YVZnAX1y9WPkz9gQcZHC2SvU-UckDRo,1012
|
|
41
|
+
bluer_objects/.abcli/mlflow/list_registered_models.sh,sha256=cZGtAzfLx-kW3-zi0mLrfhzk4B8KyUL2sq2tD7lK5q8,191
|
|
42
|
+
bluer_objects/.abcli/mlflow/lock.sh,sha256=MXq8srb4qAq5gZb0QC4Nkf6x7mME9L0cf46nGkTkbYY,340
|
|
43
|
+
bluer_objects/.abcli/mlflow/log_artifacts.sh,sha256=3sCdDHoRVFqCg_DPF8zw3HSAj8Grr-Mbwmf0iUlDmrk,243
|
|
44
|
+
bluer_objects/.abcli/mlflow/log_run.sh,sha256=-oDsAxVnw3wot-Jk4mju_6fgW_6K2VnhlWtAtom-tlc,231
|
|
45
|
+
bluer_objects/.abcli/mlflow/run.sh,sha256=4eywpZJ1Qc8sGObzRiS6iyeySOxTHsq2ygvSDFMHX3U,260
|
|
46
|
+
bluer_objects/.abcli/mlflow/tags.sh,sha256=IdynOEpoID-s2Lq2Ht8Hyo3IC48qQl_LXZ32LbxEYDA,373
|
|
47
|
+
bluer_objects/.abcli/mlflow/test.sh,sha256=LvnsMQnEzecb-jeNQ9YXFA-ijOTIqcDgThayh55ZcAQ,256
|
|
48
|
+
bluer_objects/.abcli/mlflow/transition.sh,sha256=6-FxiK6AV92kdHEYvWTLqp6_HyMqyw6A8ZwS4pLsLcQ,615
|
|
49
|
+
bluer_objects/.abcli/mlflow/lock/lock.sh,sha256=FQaLlwG5P5bw80tCloj6nH-fF0JA8jyAPC94RrSwB10,277
|
|
50
|
+
bluer_objects/.abcli/mlflow/lock/unlock.sh,sha256=KS0RRlBhPah93F66ny5AbJ0OxKa1eMAJPHNqWlmmb5s,282
|
|
51
|
+
bluer_objects/.abcli/mlflow/tags/clone.sh,sha256=HY2tigFx9fG4BVDjcoQAUCKil01yESv1f4H9Y5_thm4,440
|
|
52
|
+
bluer_objects/.abcli/mlflow/tags/get.sh,sha256=hsI_zzwJkRmnxvAKlCPdkGlEbn5Ol3eVp8sOi_iA2o8,233
|
|
53
|
+
bluer_objects/.abcli/mlflow/tags/search.sh,sha256=_h3kx4YkB1hbDxUJhMq-Su_jtK-BWhTeuZic8h0jARo,164
|
|
54
|
+
bluer_objects/.abcli/mlflow/tags/set.sh,sha256=-8hYtWAChlGbKIiI502IyaEaTikuACFFwUTdUnGkW7Q,277
|
|
55
|
+
bluer_objects/.abcli/pdf/convert.sh,sha256=m_4qBzdZuJsKWfEGvVdi3muFANWLBCiCeb4PmHUgkJE,2840
|
|
56
|
+
bluer_objects/.abcli/storage/clear.sh,sha256=VzfS-DfSFcYWFcz1jVdA7MY2xChsElOF841N-2btIVI,1601
|
|
57
|
+
bluer_objects/.abcli/storage/status.sh,sha256=HRbQq9EhoZ1S-GHXOTeclSOTbV-hrEieGAFIKP6ZE8w,383
|
|
58
|
+
bluer_objects/.abcli/tests/README.sh,sha256=gk2KuNLFTuV3qdVgH8BNfJmur3gZoSV8EwLboVjrCgM,150
|
|
59
|
+
bluer_objects/.abcli/tests/clone.sh,sha256=Rl9pHvmRJ4H-y-iMA80q11UdSZFrguNaMTez0LTtJjA,473
|
|
60
|
+
bluer_objects/.abcli/tests/create_test_asset.sh,sha256=onRGc3VjDWA7On3isxKD3J7mxA6n349AVXRj90Z3Jzc,386
|
|
61
|
+
bluer_objects/.abcli/tests/file.sh,sha256=1PSlslmfA41nK0iQHwcelTvXT8LAqswF83vcgK98DYU,1209
|
|
62
|
+
bluer_objects/.abcli/tests/gif.sh,sha256=qLbVHcvndl8s3YDHd35T06VR5reAdV-TN7eTXHgTn-s,488
|
|
63
|
+
bluer_objects/.abcli/tests/help.sh,sha256=Nt03w9mNfhycVTngVeIjpTqLmhKWpFGPq_FOcghDo50,2076
|
|
64
|
+
bluer_objects/.abcli/tests/host.sh,sha256=GBuTLNw1sU3fAb5jS-ew_qAfovVCQ5CLaz5ad04IkoA,144
|
|
65
|
+
bluer_objects/.abcli/tests/ls.sh,sha256=l8t2YW5-XbAFC35sAfX0XjAJQjsoz8i-_RnDaLXN-G8,747
|
|
66
|
+
bluer_objects/.abcli/tests/metadata.sh,sha256=t-kJ5ZJvsztzG8xyooqRcmo70VDHDcJXcWBD4-aFXQo,2596
|
|
67
|
+
bluer_objects/.abcli/tests/mlflow_cache.sh,sha256=EEAPGasQgN4j6YLp30_IMYAPCTUBxmTgoMzMSpseVbw,388
|
|
68
|
+
bluer_objects/.abcli/tests/mlflow_lock.sh,sha256=TJwp6HbVUOT1HqRfXPS8_zpKAL7-mBee_yyOhmKNzt4,717
|
|
69
|
+
bluer_objects/.abcli/tests/mlflow_logging.sh,sha256=TVzHhk9qRthpP2xdKwu3LwK00S77GqH50io3oVyS2UE,305
|
|
70
|
+
bluer_objects/.abcli/tests/mlflow_tags.sh,sha256=eok1Hzm39hTBOqWFcE7lseKJOsVNIOr3XZOGBQdRDSw,796
|
|
71
|
+
bluer_objects/.abcli/tests/open.sh,sha256=usVDe2dIcuwIicGxL5y8KiIxPngY04aUgZuYe_5B3xY,211
|
|
72
|
+
bluer_objects/.abcli/tests/open_gif_open.sh,sha256=Hmpkic6IUFT_NvFCzkY8163Ltx25tECRB6NinXgpCXA,247
|
|
73
|
+
bluer_objects/.abcli/tests/pdf.sh,sha256=S5pKEeZUhYcW4cn7m_Ve7RJfGxwjUjSBcJ08jnEgtkU,874
|
|
74
|
+
bluer_objects/.abcli/tests/storage_clear.sh,sha256=Pfx23I6Lj_s4hjEmtW40ULAwjFA32hoitQTosgwURTw,213
|
|
75
|
+
bluer_objects/.abcli/tests/storage_public_upload.sh,sha256=qwyUSejxDlV5Q1f7jyOLej_ADZt50HwbuSImFcrMWf8,589
|
|
76
|
+
bluer_objects/.abcli/tests/storage_status.sh,sha256=V5NpkBCxkCxXfSVLIe5pEZ_KleHLDEvFzhP2rAfyGpI,224
|
|
77
|
+
bluer_objects/.abcli/tests/storage_upload_download.sh,sha256=GvFZgzRzN9zlAGLM7m-_uDlDyATAUo7KQcW2yXYFaKw,1604
|
|
78
|
+
bluer_objects/.abcli/tests/version.sh,sha256=k-lXozSjyFgFR58cTzUYla0Ef-upx3sSK641zI5ynfE,169
|
|
79
|
+
bluer_objects/README/__init__.py,sha256=wxcv8i4ol6JdjlR5FYKH-8J51-xxMRmrdLBcGafVLl8,862
|
|
80
|
+
bluer_objects/README/alias.py,sha256=lEtpaYDVI0LCgN40MUAof7YuBCfnveMxDkwIft5l-2c,1605
|
|
81
|
+
bluer_objects/README/consts.py,sha256=0grboJwVSdsZtU3DklKN1Oj6-M5cE_maUK_xOn8tn2c,916
|
|
82
|
+
bluer_objects/README/functions.py,sha256=vfCnrU5m5X3pwuH8niIfW0_fikOsB7NAeC4FSq2AbNc,7445
|
|
83
|
+
bluer_objects/README/items.py,sha256=Z7tUV27pBaNTRaKHrXN9YxN66IFc-UXynVi6iqEuk4I,2624
|
|
84
|
+
bluer_objects/README/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
+
bluer_objects/README/build/aliases.py,sha256=b5_aAqIokffwSDq_UnFGSugsa7B4jvVR6_2hcRl_qBs,445
|
|
86
|
+
bluer_objects/README/build/docs.py,sha256=bHRdku4fO_n9jViLl8HYvSLartum-Rct4ohAwR_b9ow,482
|
|
87
|
+
bluer_objects/README/build/modules.py,sha256=HIiLHCXNaNA15CcTS9tZzt0n-kAknytpVtFA-jo5NSM,136
|
|
88
|
+
bluer_objects/README/process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
+
bluer_objects/README/process/assets.py,sha256=BaAnhnpqKjmnzYQe1r9NEyGLDJPhhlKwUcdj3kFfNb4,1145
|
|
90
|
+
bluer_objects/README/process/details.py,sha256=qLXFlszCKTn-H57dhztmsQYjlvuTLaFWZYGNENgCy-Y,414
|
|
91
|
+
bluer_objects/README/process/envs.py,sha256=laX7hdXBPeRsu_K8Jy9gtm5d9YZA3nwrienBRlmeoRk,627
|
|
92
|
+
bluer_objects/README/process/help.py,sha256=bPaOVknQqj_QpWRkzg_Fy17FfHKSjbDBNxhu2IJYl00,687
|
|
93
|
+
bluer_objects/README/process/include.py,sha256=8prsN_2tpw3RLtLhEQvc_yRUF0mBo3HzPw6kpwCu92s,1099
|
|
94
|
+
bluer_objects/README/process/legacy.py,sha256=8AdRPD31tG8PE8Ori8b-fV5uDq413LOIGfl7wSzXMuc,575
|
|
95
|
+
bluer_objects/README/process/mermaid.py,sha256=HTRn7bgXSuUY1yuqbrMY_snmvGaXIxp9n1Dw1fe1OO0,565
|
|
96
|
+
bluer_objects/README/process/national_internet.py,sha256=SzFVEor6jMpACqjj6XB-jusrFlG6Jxi1_BgMMwRBXL0,1308
|
|
97
|
+
bluer_objects/README/process/objects.py,sha256=mwsFmvnorgc21xQjDvXum7G2VRH98s_Bj3506fD1DyQ,941
|
|
98
|
+
bluer_objects/README/process/signature.py,sha256=lTdcmvQINBd7B_ETsS8kiuNjmJR1WcCFvuOdMkO34jo,1495
|
|
99
|
+
bluer_objects/README/process/title.py,sha256=NH0-f8QW9nmFWBRiaEU8GB0GEukDQHohJ0M6KCWLPI0,1184
|
|
100
|
+
bluer_objects/README/process/variables.py,sha256=c6mZxlG10KRvEPS5Xek6DQvKnrMe_pJPuvub3dZgQWY,272
|
|
101
|
+
bluer_objects/assets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
|
+
bluer_objects/assets/__main__.py,sha256=X1s4ABevs8y5pafPIhZBj5oFX_kMOLWLTMaCFF6_Rio,1064
|
|
103
|
+
bluer_objects/assets/functions.py,sha256=ZxvjbM_XBRJJewAyE8qdzTZdisQTviFdShYL9cVjM_E,1497
|
|
104
|
+
bluer_objects/file/__init__.py,sha256=c_79ipBkKl6OFDimOev0vnaVdpUk-Bl3oJUapOreMXc,681
|
|
105
|
+
bluer_objects/file/__main__.py,sha256=katbvYg2ykEcs14ZY1kvCKaA6KB_vhlPCLPuJlMX_kY,2165
|
|
106
|
+
bluer_objects/file/classes.py,sha256=TRgeRP2yxInPkBnywhuB4BsoBcBRA3UmQzX1dI43UxU,872
|
|
107
|
+
bluer_objects/file/functions.py,sha256=RbkLT4bN-Nz9UiYnJgBx5I9AyPaiDstt7UXrWLs4mPM,6757
|
|
108
|
+
bluer_objects/file/load.py,sha256=1zt5xC95HFr89G9lsi3gCJMSvC4Bt0vVeeUEf3NjpOQ,4281
|
|
109
|
+
bluer_objects/file/save.py,sha256=IuSbK6GExzOhHqaVfAhoGRqtgCTaon3Fr1T7rSzyV3w,5277
|
|
110
|
+
bluer_objects/graphics/__init__.py,sha256=Dd0kQqN7Ldvp1N9oyIirPZ6W3IdUtfPj2u21Bf4W_MI,213
|
|
111
|
+
bluer_objects/graphics/__main__.py,sha256=5_acfal1MnfzhDrp_pfDbC7oy5uzf6vDiiG3lvgx4VU,2041
|
|
112
|
+
bluer_objects/graphics/frame.py,sha256=WcSn-0oqDw48Akmn_bwcjDC9U_kKqRYRoGWYPoKyFvY,321
|
|
113
|
+
bluer_objects/graphics/gif.py,sha256=p5gVJuRLzeaYVwiuvvXGPlfJQh884HKHdxxxTPbr7Ww,2217
|
|
114
|
+
bluer_objects/graphics/screen.py,sha256=HF1EqjIsPTLEK4KR-8Rlb2lAVgbHuQNhnu-VL8macOg,1825
|
|
115
|
+
bluer_objects/graphics/signature.py,sha256=JLml1OR3b4uotZyaAjyrOJworUXuPhp8nDHxHXET_Xo,2295
|
|
116
|
+
bluer_objects/graphics/text.py,sha256=nnJrLUD4LIurBntSeUFwBOsbhzALXrzHzfDnBVEcFKA,4382
|
|
117
|
+
bluer_objects/help/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
|
+
bluer_objects/help/__main__.py,sha256=Dxg-JpMOIlYWZklI_J2LyiHnRui5lUwWmfM7FLRzUXA,237
|
|
119
|
+
bluer_objects/help/assets.py,sha256=4Teo-q2GZZ63VEU6fmlnyYJ2s8BVVmJcUWq4rYL2brI,1827
|
|
120
|
+
bluer_objects/help/clone.py,sha256=PDnQs7zc4sqmoBHPjVRfX7jIaePiohPGCNA5bxeerik,553
|
|
121
|
+
bluer_objects/help/create_test_asset.py,sha256=oxJORm2qk4b_q7EC6-dEuNu1_pK9Ri60PcHhrE8ruxM,375
|
|
122
|
+
bluer_objects/help/download.py,sha256=slRe4Z2xPjJ4BbdUbZUJbDWSDW-TdaDWBvgD_uINFl4,792
|
|
123
|
+
bluer_objects/help/file.py,sha256=WE-BoeWNTJC9-GpmDaFPpwmB1bS7NlWHDbSAwtXvY4g,970
|
|
124
|
+
bluer_objects/help/functions.py,sha256=cOkGv-evh4kabrVvWj9KSKq9tJTVnjz0BBATUFn-LS8,1304
|
|
125
|
+
bluer_objects/help/gif.py,sha256=0yrTJ0U-vyqc94GH5xstAc_C9Ld0pxptdBusOpnbfzQ,1007
|
|
126
|
+
bluer_objects/help/host.py,sha256=cq4Y8mo71pqJ0AUjCGkj3smZ-MOTo9aqyxm8q2FWVAs,1050
|
|
127
|
+
bluer_objects/help/ls.py,sha256=lbYo6tyNdepxr-0R5ICkFMNylCuibYxsgVPlgHRR1cQ,957
|
|
128
|
+
bluer_objects/help/metadata.py,sha256=0cv1eWnIFsVRXCFadJKyv2n6vmsW4L4qfVoRrZ6T27Y,3724
|
|
129
|
+
bluer_objects/help/pdf.py,sha256=y3e6p-JtjyBgh77eiHKVI2COnr9re78-bvCrS460u5c,1134
|
|
130
|
+
bluer_objects/help/upload.py,sha256=SDjFDP_O2y1HIJOzWmjuksMF0G5FbrnS14BP0J4vDIE,501
|
|
131
|
+
bluer_objects/help/mlflow/__init__.py,sha256=fvnGg8l24oGWKd7lbVm32GHyrE3eBlholj4RFrjFNuw,4427
|
|
132
|
+
bluer_objects/help/mlflow/cache.py,sha256=RAAbnGyDJTJlo9YuNv9CXVkO5kKR6LIrN8kzzT0YtLk,660
|
|
133
|
+
bluer_objects/help/mlflow/lock.py,sha256=REdB4LmlHu2_6SF1nDA50KBbYtNIKRDbYH7KduUnuEg,848
|
|
134
|
+
bluer_objects/help/mlflow/tags.py,sha256=vYP4SjemzoTiBvEB7ooRsOs5yIt5ZwS1ZlKeCqzK1vI,2230
|
|
135
|
+
bluer_objects/host/__init__.py,sha256=Ko43SWnZNsGKuIPU_l0w17pYrxCgVHQx3_zEoUNaHZY,272
|
|
136
|
+
bluer_objects/host/__main__.py,sha256=J0MO2sUzrI_t_X4VVYyM6n41ND0yhhSXOmZSkDAC4rg,1751
|
|
137
|
+
bluer_objects/host/functions.py,sha256=Jrm2MB60V-lyITykOTmmhf4IxOJKSwqRUzj_dJu38B0,1752
|
|
138
|
+
bluer_objects/logger/__init__.py,sha256=2aGNbx-qBXU3IlX9BDqtrFfN25lO_uarEg22cE3-3dU,102
|
|
139
|
+
bluer_objects/logger/confusion_matrix.py,sha256=CCcuogDm7_w-0f87-AeK7ue2CMBRJHmoaO_Vqy-C_Ds,1991
|
|
140
|
+
bluer_objects/logger/image.py,sha256=wHpE6jCqKGmcjXU61vCMKbBeir7DAxH6nKx5kb_1Vv0,2617
|
|
141
|
+
bluer_objects/logger/matrix.py,sha256=cPKQIhd347MH_9LaB-Ym7Mix1pqampG9MIgkeh08KA4,5757
|
|
142
|
+
bluer_objects/logger/stitch.py,sha256=qFWQAxNyfOn7k5celRYIUPqaI-ZqDWKQ5ud1VyaIwM4,2515
|
|
143
|
+
bluer_objects/metadata/__init__.py,sha256=nRFzLb9zMQiVqESThflFFThVOnzC7Aq1ks9_K1OaOg4,311
|
|
144
|
+
bluer_objects/metadata/__main__.py,sha256=UAZBsf3AMUo-OHIgg4gS5_OowDOIO2T_zjismL3AfkI,2272
|
|
145
|
+
bluer_objects/metadata/enums.py,sha256=aMlAZckl_IjPZcGZhpJa7mb9MTDQ-gWuaQtJJQeHlho,759
|
|
146
|
+
bluer_objects/metadata/flatten.py,sha256=Du_mieFw9WGMAGXw7N7zsVJ_A_aMbCpoYjLCC2U3UlE,589
|
|
147
|
+
bluer_objects/metadata/get.py,sha256=1eS1O-GghJ7mYCIiwcQRFwyAd1b3CUafmajAwja9HB8,1803
|
|
148
|
+
bluer_objects/metadata/post.py,sha256=1r0yLmIuEPrKJ_-RfALC5ajpLzmUqEjLYoIQMuI4Jjw,2062
|
|
149
|
+
bluer_objects/mlflow/__init__.py,sha256=Zng1VKLRWezGpIATPBPVer0X9NK3luo5LBqZMMHvgLw,536
|
|
150
|
+
bluer_objects/mlflow/__main__.py,sha256=RMoiVqhORrPDwdvhjMEWPxTEwbALZjC_Ti0l4AhfmUQ,6030
|
|
151
|
+
bluer_objects/mlflow/cache.py,sha256=RQu9hLI6oRhCvj0N1VLcynSutjsxU4wQDo7N3m3i3ho,310
|
|
152
|
+
bluer_objects/mlflow/logging.py,sha256=qBZRbLsfIzKv3FfEZxIa2p3YGoHHEpkw2GCkTBTE8Ho,2720
|
|
153
|
+
bluer_objects/mlflow/models.py,sha256=ak2fvEJojfzjfI7VFUJsVKttJCJE9U-udcap05sKXOM,1422
|
|
154
|
+
bluer_objects/mlflow/objects.py,sha256=YXZsVMTaIy5gP6Ucyc4kgN0xx_vkpG_9TIWiPWgIvcc,1999
|
|
155
|
+
bluer_objects/mlflow/runs.py,sha256=m0bio1ZrzsxFitOMRa7gNxpGlNBR5B_RIWhVFzllcM4,2579
|
|
156
|
+
bluer_objects/mlflow/tags.py,sha256=c1BQ1QMsTW-ysH-tpbsFYgQPy4RkUWRTZO-DHmJr_4s,3705
|
|
157
|
+
bluer_objects/mlflow/testing.py,sha256=cJH5Ki02fJN_Xos1j9yvwQChXvMkOa9i12vtDKmkbNc,842
|
|
158
|
+
bluer_objects/mlflow/lock/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
159
|
+
bluer_objects/mlflow/lock/__main__.py,sha256=xF_xq2UqAsEohSOHjxaFXaw9KopOEDg6LRDM5a4VAPQ,1138
|
|
160
|
+
bluer_objects/mlflow/lock/functions.py,sha256=6_2uDdk5BdhvtI6cqy_rpERjG79VFAY7w6OymmX8AlE,3033
|
|
161
|
+
bluer_objects/mlflow/serverless/__init__.py,sha256=f3v40BpqLoIt_l5BmB23tbZcUlNYz3-3xBnDPZKEXJ0,175
|
|
162
|
+
bluer_objects/mlflow/serverless/api.py,sha256=ZwYdVlKk5payPIiZiqKTzmFvhlvAZDl-OyWgxRy4P3c,1764
|
|
163
|
+
bluer_objects/mlflow/serverless/read.py,sha256=Gm5TRWaI5Doc_d0vNxURfKzCnN0oIpMVflXi0LfoXDo,410
|
|
164
|
+
bluer_objects/mlflow/serverless/search.py,sha256=RNBCiV8btLar4gWUkPjSuoQrrSQ_Jo1xOZyRz16oJg0,945
|
|
165
|
+
bluer_objects/mlflow/serverless/write.py,sha256=-c0gGLmMNVIxcHEudymY3qS4RWjXZplP7xwtMIfNZIQ,968
|
|
166
|
+
bluer_objects/pdf/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
167
|
+
bluer_objects/pdf/__main__.py,sha256=u7oJKcE7ntl1x7S5j5GV8hX_4Nm1XYSWUsb--Lb2ZB4,1590
|
|
168
|
+
bluer_objects/pdf/convert/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
169
|
+
bluer_objects/pdf/convert/batch.py,sha256=A5zhAiZ6R_fVlv4QKywk6k_2Zf1uzjoCL8zl-itpxmE,1260
|
|
170
|
+
bluer_objects/pdf/convert/combination.py,sha256=OufDTEB_v9c7x4vh0yZTn97Jq6S1kZS_Py05jXlQ7fs,738
|
|
171
|
+
bluer_objects/pdf/convert/convert.py,sha256=SX6XXrME3Kgus7fGzgsuUoFl0pAsWAC0DkMJgrUwiBo,3033
|
|
172
|
+
bluer_objects/pdf/convert/image.py,sha256=7kKapRlg7EUGRzuHnb4xw4dXi8kMVJ55RiJpZeE4plY,1260
|
|
173
|
+
bluer_objects/pdf/convert/md.py,sha256=TFw3DugyQJfOxRm1BLNUL15314Clt5_lYoLffO-HECU,2455
|
|
174
|
+
bluer_objects/pdf/convert/missing.py,sha256=3dgMTAWFxIoQtVn6cTKptg-Qa06dE1mUsw0wvpuVdYE,2511
|
|
175
|
+
bluer_objects/pdf/convert/pdf.py,sha256=QGx_LhgWeKbsvfNgdA14Qnfvg6TB8MFf-xeA58KLF-c,901
|
|
176
|
+
bluer_objects/storage/WebDAV.py,sha256=UftrpSDzJAtTeMEORNpOTbDhmRYAzgdTNbmrAkgzPTU,3279
|
|
177
|
+
bluer_objects/storage/WebDAVrequest.py,sha256=QsC-us6yxBJUfyKwjQYNc55DCFwGZBS1SzmNKXyYkHg,10288
|
|
178
|
+
bluer_objects/storage/WebDAVzip.py,sha256=6C7-dCmYEJXBDDVzJPqtpfECF2f8qCLX4acVcQJFXgA,4247
|
|
179
|
+
bluer_objects/storage/__init__.py,sha256=0kQ968eK_RJpjlIOnUkG17Ze-kDjVO_VI0GJxBZcj1g,2127
|
|
180
|
+
bluer_objects/storage/__main__.py,sha256=Yg-ZviW2mjaruwPRn-5vEryKwb2HPUp8xSb5LLt39CQ,2571
|
|
181
|
+
bluer_objects/storage/base.py,sha256=3dKF-0DNatUEvi88f5pb94B3trfTtRYHQrrcFNYAvg8,3632
|
|
182
|
+
bluer_objects/storage/policies.py,sha256=xIuIhFjcWH7ptg_jUgfYTNnXqs9xaX4yU5qSOhmmxhI,125
|
|
183
|
+
bluer_objects/storage/s3.py,sha256=NnnTQGGFroMrJcmTrKx9bgnSWAe4ap33YsxezpqwF7I,11029
|
|
184
|
+
bluer_objects/testing/__init__.py,sha256=DWY5ZtvCnHG_t9BDiqy_ArLOZi-nlyAtPVMLA1PPAMU,62
|
|
185
|
+
bluer_objects/testing/__main__.py,sha256=hhJV9qn0V_8FxzNDcoHCHr4A7zf9UudnNGJCAPkTBGU,750
|
|
186
|
+
bluer_objects/testing/functions.py,sha256=AXAfzWLcEPkbSYTehdahshjKJ45C4IJkRs_TgrHOntc,1355
|
|
187
|
+
bluer_objects/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
+
bluer_objects/tests/test_README.py,sha256=5D4UV8VcjbeAPThsYVynYtVFuP8gwMAhIjEWuOQZsWs,89
|
|
189
|
+
bluer_objects/tests/test_README_consts.py,sha256=fBDNjmPrQN0WhF0AtrTVRcEDQMW02MfLFQPgI3U2PcI,1290
|
|
190
|
+
bluer_objects/tests/test_README_items.py,sha256=yfH2RqvgeZhanlJOpVhXuwe5B1tJ5S9fqW4egwWQmlg,4560
|
|
191
|
+
bluer_objects/tests/test_alias.py,sha256=YqgiNUIC2plydFEdAUe2RH1NchiPMku_IXYZWprzp1g,765
|
|
192
|
+
bluer_objects/tests/test_env.py,sha256=9dUzyJn8FBoEv9j1H-NN_sr0tiiNCSxTk4Q5zrmDOYM,1358
|
|
193
|
+
bluer_objects/tests/test_file_download.py,sha256=uQH459FXfigm7wWWFmtRCrcVtUOdDcyeh788XrqtReY,619
|
|
194
|
+
bluer_objects/tests/test_file_load_save.py,sha256=unqxfiqba6RVhMS95AtHZWsT7Q097jBOKdckAT9PyFU,2390
|
|
195
|
+
bluer_objects/tests/test_file_load_save_text.py,sha256=3XnBGlv3KZvheHY-RlX1Su6LOBkkn57pkf9_dXR81r8,1017
|
|
196
|
+
bluer_objects/tests/test_fullname.py,sha256=xWFf9qqzDQ-4RxRyvyR9GWZyU5qNrKxru94UUKMJfPk,80
|
|
197
|
+
bluer_objects/tests/test_graphics.py,sha256=mEuk0rWLwr7b2nv4FH6f-RphwfqP23xe2pkjhWe0HgU,238
|
|
198
|
+
bluer_objects/tests/test_graphics_frame.py,sha256=wRW3MjnfS8edNHiWi_BFJBULoLs1JlJhpFeuCoW5I6A,267
|
|
199
|
+
bluer_objects/tests/test_graphics_gif.py,sha256=5NxBCQWQAzqAcEETdexEaSdZq-pHs1ggK8RZztGYOac,642
|
|
200
|
+
bluer_objects/tests/test_graphics_screen.py,sha256=26GMDxImz57oWb8mFrNBtiGnctfjO0oNpzi1GLaHEro,138
|
|
201
|
+
bluer_objects/tests/test_graphics_signature.py,sha256=CVV257E3A5KBwqEDpRXShN-ful1zFwV9S-z-06oFkxM,1588
|
|
202
|
+
bluer_objects/tests/test_graphics_text.py,sha256=_jLZVuAcQQYlKpATeQCBpPMa8UhKQ__bFYR1bedO5EE,314
|
|
203
|
+
bluer_objects/tests/test_log_image_grid.py,sha256=qjSRMwY5jnJd9S3XZ3FDeoIsSJ9aFJ3yDhth1sV0A5g,737
|
|
204
|
+
bluer_objects/tests/test_logger.py,sha256=DdkZqj8YOErKf6T-SWEPtU21LGfQf_O3GKrCn3H0Ujs,88
|
|
205
|
+
bluer_objects/tests/test_logger_confusion_matrix.py,sha256=KbkUg153n6xt3558LXE50URGXrhoRsSorF2lJcqMmaE,469
|
|
206
|
+
bluer_objects/tests/test_logger_matrix.py,sha256=qedidEDGusMWQM04kgk3mt74yFm4iU3jIyjE4gRi_FQ,1703
|
|
207
|
+
bluer_objects/tests/test_logger_stitch_images.py,sha256=GW_EPbByNbAhwCJ3LwVXjwe4sTx6jcE0SXVvM8kL_LY,929
|
|
208
|
+
bluer_objects/tests/test_markdown.py,sha256=KtCWKIDs4U1M3qAGFMYhzVpdGiDV2VU8z7dCaU3s3Ec,217
|
|
209
|
+
bluer_objects/tests/test_metadata.py,sha256=Qy-Zp5yFrHmZ5tjujuLNcvI2YEyzNuAFXgy0L7sJOJ0,4389
|
|
210
|
+
bluer_objects/tests/test_metadata_flatten.py,sha256=edBaX0CF7Yte4jMSIMBM04FY6Umo3BpfSXXStqpx8IM,2760
|
|
211
|
+
bluer_objects/tests/test_mlflow.py,sha256=n7jk7bsToPKYyPS40NO42bl_7UZYUU_s6EfyMp32V1Q,3828
|
|
212
|
+
bluer_objects/tests/test_mlflow_lock.py,sha256=rDNfyWHZu3U88yIIFrPeQPsTneU0GR8n9gSgqpj0q9k,569
|
|
213
|
+
bluer_objects/tests/test_objects.py,sha256=pqdXvnAJ5WPlHvqqaKrd9-vqktrE9GOVxSgqHs8yK8w,1441
|
|
214
|
+
bluer_objects/tests/test_path.py,sha256=JjONWyhZyMM_u1SzD1RI_iZ5vYJDUe-B51fbbHczIig,85
|
|
215
|
+
bluer_objects/tests/test_shell.py,sha256=9y93XLZLceTcgcgulaiPXDtao6AP9cmlCibDL9vlyPo,591
|
|
216
|
+
bluer_objects/tests/test_storage.py,sha256=3kFq4lVuvHIpHYob6YprqNdiPaZKgSdMJSsCZ-nvXdI,822
|
|
217
|
+
bluer_objects/tests/test_storage_base.py,sha256=ieuuuldGWdximvckpiP-y5bUe3tQd-1hatCyxYPTtfg,949
|
|
218
|
+
bluer_objects/tests/test_storage_s3.py,sha256=otgWqAzQBC7_RoNCyNoKUbONVlm18DSKQF8MUj9deHQ,1567
|
|
219
|
+
bluer_objects/tests/test_storage_webdav_request.py,sha256=h2b8PeIx0-hQ2d6PmQcJZyQf59L3fDAzTbKg4SNV-SE,1769
|
|
220
|
+
bluer_objects/tests/test_storage_webdav_zip.py,sha256=C19qxhkcHyTwVFzW35vL85SOcXJPkqXXaWUNll0Uyqc,1017
|
|
221
|
+
bluer_objects/tests/test_testing.py,sha256=d2NH435yqJBl9wmfMqGGd-f0Y0jsL2QhHUXkty9AwPA,235
|
|
222
|
+
bluer_objects/tests/test_version.py,sha256=Lyf3PMcA22e17BNRk_2VgPrtao6dWEgVoXo68Uds8SE,75
|
|
223
|
+
bluer_objects/tests/test_web_is_accessible.py,sha256=mcxWFXU204x4qJHGiBKDAnq64L8ZhHbMg9gkoa0jy3s,327
|
|
224
|
+
bluer_objects-6.464.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
225
|
+
bluer_objects-6.464.1.dist-info/METADATA,sha256=DSuMifdy6QwjJnBvs864CQQOsZVJg8txXuljK5ImNhw,4580
|
|
226
|
+
bluer_objects-6.464.1.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
227
|
+
bluer_objects-6.464.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
|
|
228
|
+
bluer_objects-6.464.1.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
#! /usr/bin/env bash
|
|
2
|
-
|
|
3
|
-
function bluer_ai_storage_rm() {
|
|
4
|
-
local options=$1
|
|
5
|
-
local do_dryrun=$(bluer_ai_option_int "$options" dryrun 1)
|
|
6
|
-
|
|
7
|
-
local object_name=$(bluer_ai_clarify_object $2 void)
|
|
8
|
-
|
|
9
|
-
bluer_ai_eval dryrun=$do_dryrun \
|
|
10
|
-
rm -rfv $ABCLI_OBJECT_ROOT/$object_name
|
|
11
|
-
}
|
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
bluer_objects/__init__.py,sha256=792zvAd4YOCtmE44unaRd7TD5x73Op0evrt5Kx3fHAE,315
|
|
2
|
-
bluer_objects/__main__.py,sha256=Yqfov833_hJuRne19WrGhT5DWAPtdffpoMxeSXS7EGw,359
|
|
3
|
-
bluer_objects/config.env,sha256=cMVT0kVQ00xGUoQyUqC8jpqkhR13Kpkl1-0sKQlxQAI,85
|
|
4
|
-
bluer_objects/env.py,sha256=J5LklWyWT-Yvvoe8MVCZQ3iqRqyDutq6IbNYNj9A1VM,1183
|
|
5
|
-
bluer_objects/markdown.py,sha256=PhAwCTHIisO9qOpKHeb63U5oD9Zi8LnIQKTx_OWS4wE,938
|
|
6
|
-
bluer_objects/objects.py,sha256=EYzA1vKngY2c_gdMKnUfrKVUcf-5wpFKgBFaVJA4cLE,1626
|
|
7
|
-
bluer_objects/path.py,sha256=9uspZqObI29NerVDF30uILLaouDtloASh0Mywyq2_ew,3946
|
|
8
|
-
bluer_objects/sample.env,sha256=rYG7y_Vyhcjj8PTeSSJToh56NLke0jvedkcnldvrQ6k,47
|
|
9
|
-
bluer_objects/urls.py,sha256=paHaYlLMQOI46-EYNch5ohu9Q09BMkF2vvJy1QufrVI,19
|
|
10
|
-
bluer_objects/.abcli/abcli.sh,sha256=8RDi_vCZfB6JOeGSJWcmmzZv2pS4o-_j250rFYG7Ljc,202
|
|
11
|
-
bluer_objects/.abcli/actions.sh,sha256=HZI-X5KUy6bXEHmxywfBN1zbHalU0mcTblTQ2HvIfOE,236
|
|
12
|
-
bluer_objects/.abcli/aka.sh,sha256=odRbw4KZb9Ld7uXny6H2pPi64_5kowKX3s68N6YvRmI,23
|
|
13
|
-
bluer_objects/.abcli/alias.sh,sha256=mOLTambl1NitzjO39KgXy0sjI4kZUCGTRi0y7iAcFa4,661
|
|
14
|
-
bluer_objects/.abcli/bluer_objects.sh,sha256=x7qf8hSAp3dAl0Hes4J07vL6qP-mWFUkJhvUXzTJC_8,210
|
|
15
|
-
bluer_objects/.abcli/clone.sh,sha256=KqC5d4MAXwo7UZGhKnfCq9k9CCSl3I1dpU1igYs0Yrs,1975
|
|
16
|
-
bluer_objects/.abcli/download.sh,sha256=77Bak3TATDrDNpBWM8bvbU1MdsuTCENyqdBJNx_Wsa0,564
|
|
17
|
-
bluer_objects/.abcli/file.sh,sha256=djcHSFS8fqlCsoDyZKmimNTzd-jOUnxbOFpL7xq_hGk,150
|
|
18
|
-
bluer_objects/.abcli/gif.sh,sha256=sZZZWAvwR7bTf6gF70b0l_1tw4-HOswh93iwUAQilEI,803
|
|
19
|
-
bluer_objects/.abcli/host.sh,sha256=N-Gdsk-mR2V2MvFlwlIVwaiGkQyV1DoM5UdhQrpUsls,573
|
|
20
|
-
bluer_objects/.abcli/ls.sh,sha256=-jkT5anPqnTMTzvJZXujmXE705YprYCUbxOQTNFCTrc,417
|
|
21
|
-
bluer_objects/.abcli/metadata.sh,sha256=EXBB39nn5PRRryIlfetIpR4fPQ-4eDg7Hnee9g1JXrI,377
|
|
22
|
-
bluer_objects/.abcli/mlflow.sh,sha256=CtTC6wqc3-08T221Lu2H2HlsbDc2TI8POYqDhHWfaLY,666
|
|
23
|
-
bluer_objects/.abcli/object.sh,sha256=Zh2ZMFqBSIOHwwwLegCMxJRfaYCbPp1EJMT3LvcFzhE,739
|
|
24
|
-
bluer_objects/.abcli/select.sh,sha256=CVcqVRN6bMLtEo0SptZS_QGY90_lT1Su71DlcVyddXo,878
|
|
25
|
-
bluer_objects/.abcli/storage.sh,sha256=iYHxdXJI9sGR-WKxDuYKOB06FccSQ0G0-uZn9UJQGnc,321
|
|
26
|
-
bluer_objects/.abcli/upload.sh,sha256=vRkzfDzze0MYMoUalzY6QzNC2DXlTFfm2nSMfNSB-9k,529
|
|
27
|
-
bluer_objects/.abcli/metadata/get.sh,sha256=6W9x0akZwwozTyOlKCW_0MndYVUAL4v1HSUPxTAsfKA,835
|
|
28
|
-
bluer_objects/.abcli/metadata/post.sh,sha256=UdvZNuRu6_NcyRVvDMFZ9GEwOm3K8rsNqM0FFr9LskA,570
|
|
29
|
-
bluer_objects/.abcli/mlflow/browse.sh,sha256=24aB7sUHYX1UM_VbfWh_50f_BnM3fQTzUnFuI7AuqMo,1088
|
|
30
|
-
bluer_objects/.abcli/mlflow/cache.sh,sha256=tpdCqL3jMFpfRmYS6UTgLiycv43_z_N_J1ux2XsDgdA,556
|
|
31
|
-
bluer_objects/.abcli/mlflow/deploy.sh,sha256=SiuQPzqpDz4TLJFU_zXobYFkqeIe_4mKMgAB4CX7e5k,663
|
|
32
|
-
bluer_objects/.abcli/mlflow/list_registered_models.sh,sha256=cZGtAzfLx-kW3-zi0mLrfhzk4B8KyUL2sq2tD7lK5q8,191
|
|
33
|
-
bluer_objects/.abcli/mlflow/log_artifacts.sh,sha256=3sCdDHoRVFqCg_DPF8zw3HSAj8Grr-Mbwmf0iUlDmrk,243
|
|
34
|
-
bluer_objects/.abcli/mlflow/log_run.sh,sha256=-oDsAxVnw3wot-Jk4mju_6fgW_6K2VnhlWtAtom-tlc,231
|
|
35
|
-
bluer_objects/.abcli/mlflow/run.sh,sha256=4eywpZJ1Qc8sGObzRiS6iyeySOxTHsq2ygvSDFMHX3U,260
|
|
36
|
-
bluer_objects/.abcli/mlflow/tags.sh,sha256=IdynOEpoID-s2Lq2Ht8Hyo3IC48qQl_LXZ32LbxEYDA,373
|
|
37
|
-
bluer_objects/.abcli/mlflow/test.sh,sha256=LvnsMQnEzecb-jeNQ9YXFA-ijOTIqcDgThayh55ZcAQ,256
|
|
38
|
-
bluer_objects/.abcli/mlflow/transition.sh,sha256=6-FxiK6AV92kdHEYvWTLqp6_HyMqyw6A8ZwS4pLsLcQ,615
|
|
39
|
-
bluer_objects/.abcli/mlflow/tags/clone.sh,sha256=HY2tigFx9fG4BVDjcoQAUCKil01yESv1f4H9Y5_thm4,440
|
|
40
|
-
bluer_objects/.abcli/mlflow/tags/get.sh,sha256=hsI_zzwJkRmnxvAKlCPdkGlEbn5Ol3eVp8sOi_iA2o8,233
|
|
41
|
-
bluer_objects/.abcli/mlflow/tags/search.sh,sha256=kJBLkd7_ACeMUXdRk-zXkBfOoiyDWwO8sUit2NkIhNY,299
|
|
42
|
-
bluer_objects/.abcli/mlflow/tags/set.sh,sha256=-8hYtWAChlGbKIiI502IyaEaTikuACFFwUTdUnGkW7Q,277
|
|
43
|
-
bluer_objects/.abcli/storage/clear.sh,sha256=QgotGPskzCwtTjKobokduCfjfy6vFHqzFZ6t-H9qwN0,1504
|
|
44
|
-
bluer_objects/.abcli/storage/download_file.sh,sha256=2ZQgsxzSYw5Zwcj5XQn-NcHI_MkmzmmZWLM4D1ev1N4,203
|
|
45
|
-
bluer_objects/.abcli/storage/exists.sh,sha256=0b8wgjts1z8GZbE_KeulbrG471hACKORPPcwwqRvYNE,163
|
|
46
|
-
bluer_objects/.abcli/storage/list.sh,sha256=ySUDS31yq9qQ_2q7oXR302hConAzs0LYQ739TWJgQsI,165
|
|
47
|
-
bluer_objects/.abcli/storage/rm.sh,sha256=1r1szcLhzHf_kk46c91Pz-xY7jvqigyZKQGRXWsJg7w,286
|
|
48
|
-
bluer_objects/.abcli/storage/status.sh,sha256=HRbQq9EhoZ1S-GHXOTeclSOTbV-hrEieGAFIKP6ZE8w,383
|
|
49
|
-
bluer_objects/.abcli/tests/README.sh,sha256=gk2KuNLFTuV3qdVgH8BNfJmur3gZoSV8EwLboVjrCgM,150
|
|
50
|
-
bluer_objects/.abcli/tests/clone.sh,sha256=4FfZPySVz0ptrYPRktomAYtQWZiSMM0JWWqpDCjo8Zk,516
|
|
51
|
-
bluer_objects/.abcli/tests/gif.sh,sha256=2KbHki5Vb1lFacRhdmtyCZFkoyl1GXBaseN9Bvbj2NQ,504
|
|
52
|
-
bluer_objects/.abcli/tests/help.sh,sha256=hIBglHiZDaIyCnxh1y02288gTvt9Il_sk-DGuv-L6jk,1742
|
|
53
|
-
bluer_objects/.abcli/tests/host.sh,sha256=GBuTLNw1sU3fAb5jS-ew_qAfovVCQ5CLaz5ad04IkoA,144
|
|
54
|
-
bluer_objects/.abcli/tests/ls.sh,sha256=GeNMX37aXHR8SksD4ASkWHx1iD3Z7eb-AFQR6yZzN9g,598
|
|
55
|
-
bluer_objects/.abcli/tests/metadata.sh,sha256=OP1c0h0TSlDycrv0UglKLyBtTQwqh9M0nqVAdQUzkno,1723
|
|
56
|
-
bluer_objects/.abcli/tests/mlflow_cache.sh,sha256=EEAPGasQgN4j6YLp30_IMYAPCTUBxmTgoMzMSpseVbw,388
|
|
57
|
-
bluer_objects/.abcli/tests/mlflow_logging.sh,sha256=TVzHhk9qRthpP2xdKwu3LwK00S77GqH50io3oVyS2UE,305
|
|
58
|
-
bluer_objects/.abcli/tests/mlflow_tags.sh,sha256=pX4sEK_z2Vrb7a6Bq4qWurFVPZkvjpS10K4MLx3mf64,811
|
|
59
|
-
bluer_objects/.abcli/tests/mlflow_test.sh,sha256=7MXxYq2GgD2MEJbQlpx80qLT2HaaVn_PFFMpSA_hWA4,125
|
|
60
|
-
bluer_objects/.abcli/tests/storage.sh,sha256=HOpVnA-pQEWC4mSdTpE31BM7FxJlE9kZdvEL57VfA7c,1199
|
|
61
|
-
bluer_objects/.abcli/tests/version.sh,sha256=k-lXozSjyFgFR58cTzUYla0Ef-upx3sSK641zI5ynfE,169
|
|
62
|
-
bluer_objects/README/__init__.py,sha256=5ghygLdrsjqP2Tui5O3Ax9DR8nEHHh1HydKV05dhRhc,1259
|
|
63
|
-
bluer_objects/README/functions.py,sha256=IriuSysrApSTEgOZHqq32-eyks5v5Tn-KvmwYQUIloc,10752
|
|
64
|
-
bluer_objects/README/items.py,sha256=-XaNCr5b_NGRkZVfIQ6hBFgJw5GIVcMJdktT3hWoam4,755
|
|
65
|
-
bluer_objects/file/__init__.py,sha256=c_79ipBkKl6OFDimOev0vnaVdpUk-Bl3oJUapOreMXc,681
|
|
66
|
-
bluer_objects/file/__main__.py,sha256=v2IXWvZeh_B2sGYWzv1CiUY-7HWHXXghZM5M4IPjbu4,1277
|
|
67
|
-
bluer_objects/file/classes.py,sha256=TRgeRP2yxInPkBnywhuB4BsoBcBRA3UmQzX1dI43UxU,872
|
|
68
|
-
bluer_objects/file/functions.py,sha256=CiHZLK9Mz8M3-U_dpQSlfEIAl52zPBWyQDepLoll6Ow,6389
|
|
69
|
-
bluer_objects/file/load.py,sha256=bNwHSPFqww9c1mUJJCZqBpOF-6rR6xftecvxWB6Ziks,4518
|
|
70
|
-
bluer_objects/file/save.py,sha256=a41ghjdCm25hnSsgvlsJ_Z8Jk9MCe431D4UC3E8bSTU,5530
|
|
71
|
-
bluer_objects/graphics/__init__.py,sha256=Dd0kQqN7Ldvp1N9oyIirPZ6W3IdUtfPj2u21Bf4W_MI,213
|
|
72
|
-
bluer_objects/graphics/__main__.py,sha256=A221gpkUDYd_S2eYz8i6KwaPumg8myaR7L5j464wC54,1909
|
|
73
|
-
bluer_objects/graphics/frame.py,sha256=WcSn-0oqDw48Akmn_bwcjDC9U_kKqRYRoGWYPoKyFvY,321
|
|
74
|
-
bluer_objects/graphics/gif.py,sha256=V939DovUl2lNf-Yjwn-xa1VYYy8ALfQJHCJSvuEIQh0,2003
|
|
75
|
-
bluer_objects/graphics/screen.py,sha256=wN7fVwpNDFzzhJ3QlbqFrWoYwTuYVGDqADxYxqjQiPE,1789
|
|
76
|
-
bluer_objects/graphics/signature.py,sha256=JLml1OR3b4uotZyaAjyrOJworUXuPhp8nDHxHXET_Xo,2295
|
|
77
|
-
bluer_objects/graphics/text.py,sha256=nnJrLUD4LIurBntSeUFwBOsbhzALXrzHzfDnBVEcFKA,4382
|
|
78
|
-
bluer_objects/help/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
-
bluer_objects/help/__main__.py,sha256=Dxg-JpMOIlYWZklI_J2LyiHnRui5lUwWmfM7FLRzUXA,237
|
|
80
|
-
bluer_objects/help/clone.py,sha256=PDnQs7zc4sqmoBHPjVRfX7jIaePiohPGCNA5bxeerik,553
|
|
81
|
-
bluer_objects/help/download.py,sha256=1fw3ASOXUuXcNhm8y0AK7ZBmXzWwZvdo2hK9ZVbgteA,439
|
|
82
|
-
bluer_objects/help/functions.py,sha256=gcQq4prGv-eOZ1gU-qMItFXceZixaYNw5yBWqobSjr8,884
|
|
83
|
-
bluer_objects/help/gif.py,sha256=gKV6vNT4bEC2Ch3QIb3Yc5DqzAH_UvAVCsuvzXeF1Sc,564
|
|
84
|
-
bluer_objects/help/host.py,sha256=4t4yrPGjTbnFtODcuBjfIzpA5pmmvc5s4QrjIqPPVsM,988
|
|
85
|
-
bluer_objects/help/ls.py,sha256=acvRLDxjJOzQ1a9ZQ4Mn9aBZ8Vf17IDHcAxC2O3R33Y,627
|
|
86
|
-
bluer_objects/help/metadata.py,sha256=fk22NasBcZU1ffY4fu6AxrCzMQtTI28p_ghaSVRrrPM,2811
|
|
87
|
-
bluer_objects/help/upload.py,sha256=p-nRw9d_S6PI7PcD0mBwWqQRPWQG4r3usjvOIzAbTeM,368
|
|
88
|
-
bluer_objects/help/mlflow/__init__.py,sha256=oimroGIHpMzvP3iTT99mUk3MA2BfaSWA2B8hSq3uCUA,4019
|
|
89
|
-
bluer_objects/help/mlflow/cache.py,sha256=O8O1oaiq1e1z2HCi8fRe4hjSNimzvCaCAIu-u2GDHkE,704
|
|
90
|
-
bluer_objects/help/mlflow/tags.py,sha256=C3FcMRe-JhelhCQkAyZ5jlxGtgYxhNjtIhxka8k_ytI,2137
|
|
91
|
-
bluer_objects/host/__init__.py,sha256=Ko43SWnZNsGKuIPU_l0w17pYrxCgVHQx3_zEoUNaHZY,272
|
|
92
|
-
bluer_objects/host/__main__.py,sha256=J0MO2sUzrI_t_X4VVYyM6n41ND0yhhSXOmZSkDAC4rg,1751
|
|
93
|
-
bluer_objects/host/functions.py,sha256=ADups78hYZDAnC6FlIICQ48WkFd4sPnRMWA0D6X-FV4,1663
|
|
94
|
-
bluer_objects/logger/__init__.py,sha256=2aGNbx-qBXU3IlX9BDqtrFfN25lO_uarEg22cE3-3dU,102
|
|
95
|
-
bluer_objects/logger/matrix.py,sha256=cPKQIhd347MH_9LaB-Ym7Mix1pqampG9MIgkeh08KA4,5757
|
|
96
|
-
bluer_objects/metadata/__init__.py,sha256=B8cmMOMMO53mTwD2LJUFbSjvangSkpLqhR3oVIBsoBI,260
|
|
97
|
-
bluer_objects/metadata/__main__.py,sha256=UAZBsf3AMUo-OHIgg4gS5_OowDOIO2T_zjismL3AfkI,2272
|
|
98
|
-
bluer_objects/metadata/enums.py,sha256=aMlAZckl_IjPZcGZhpJa7mb9MTDQ-gWuaQtJJQeHlho,759
|
|
99
|
-
bluer_objects/metadata/get.py,sha256=1eS1O-GghJ7mYCIiwcQRFwyAd1b3CUafmajAwja9HB8,1803
|
|
100
|
-
bluer_objects/metadata/post.py,sha256=1r0yLmIuEPrKJ_-RfALC5ajpLzmUqEjLYoIQMuI4Jjw,2062
|
|
101
|
-
bluer_objects/mlflow/__init__.py,sha256=GVPXTclqYAyu-iJoLeHSgTaMeoMpVaczFgU4PavS3QA,523
|
|
102
|
-
bluer_objects/mlflow/__main__.py,sha256=uPRUT0x__m1jJ-TTRHmzSdv3AEFM2oKGqOJOG6wdSMk,5819
|
|
103
|
-
bluer_objects/mlflow/cache.py,sha256=RQu9hLI6oRhCvj0N1VLcynSutjsxU4wQDo7N3m3i3ho,310
|
|
104
|
-
bluer_objects/mlflow/logging.py,sha256=XiXNCdpVTAIUqY3GovcghG_t_umr2eRELdbzvNbbf2E,2281
|
|
105
|
-
bluer_objects/mlflow/models.py,sha256=6xU64Irq9LWyWFwzDJoqMN8KGziSv9VbOGv1tALzf9M,1280
|
|
106
|
-
bluer_objects/mlflow/objects.py,sha256=aXYHLRCTt1FtDQoyPOG-doCFms7qF6Krz00Fg3kzJSM,1844
|
|
107
|
-
bluer_objects/mlflow/runs.py,sha256=v1IKRvxbuKkengESnG-xdUXxxNSkALMeBmfMQwrUKSs,2416
|
|
108
|
-
bluer_objects/mlflow/tags.py,sha256=8uBYRrE4weTLrwPqo-c4M21FEVRANf7SGCcxpoCPhuM,2475
|
|
109
|
-
bluer_objects/mlflow/testing.py,sha256=cJH5Ki02fJN_Xos1j9yvwQChXvMkOa9i12vtDKmkbNc,842
|
|
110
|
-
bluer_objects/storage/WebDAV.py,sha256=bTq06MjTO9RffP3Uc4oEKwFaGx18DFb29VxD3jrPTz4,3078
|
|
111
|
-
bluer_objects/storage/WebDAVzip.py,sha256=7N1m4VZy1UIQZj7z5nkiuP_LxkW9GeKA_n6oLb_ikDw,4376
|
|
112
|
-
bluer_objects/storage/__init__.py,sha256=8KFhOPVw-5m1CiFUh8Ppz4zRA5kBo4nOBVbpznk6998,1320
|
|
113
|
-
bluer_objects/storage/__main__.py,sha256=vZI6rUkrekf1eYUgWOOUnFhl4qPfpByzwb-tihTOiIo,1776
|
|
114
|
-
bluer_objects/storage/base.py,sha256=bxccHx78H_2Ux7dlwl1qrPMeEs72SHFAO_quhmJ31Sw,1129
|
|
115
|
-
bluer_objects/testing/__init__.py,sha256=DWY5ZtvCnHG_t9BDiqy_ArLOZi-nlyAtPVMLA1PPAMU,62
|
|
116
|
-
bluer_objects/testing/__main__.py,sha256=EfuNfx1TXLriW6HHf86L7qp1FXoEV5F4sxej1r_i95k,656
|
|
117
|
-
bluer_objects/testing/functions.py,sha256=AXAfzWLcEPkbSYTehdahshjKJ45C4IJkRs_TgrHOntc,1355
|
|
118
|
-
bluer_objects/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
|
-
bluer_objects/tests/test_README.py,sha256=5D4UV8VcjbeAPThsYVynYtVFuP8gwMAhIjEWuOQZsWs,89
|
|
120
|
-
bluer_objects/tests/test_env.py,sha256=Gjjb9FoQ6MPvFwX8pdx74aND8Ye_Bb-8XpaaKOZtw-4,547
|
|
121
|
-
bluer_objects/tests/test_file_load_save.py,sha256=mNCo3ay55ktc5L6SPpNyrpsJrGfVpYi66EgunlAN-Uw,2406
|
|
122
|
-
bluer_objects/tests/test_fullname.py,sha256=xWFf9qqzDQ-4RxRyvyR9GWZyU5qNrKxru94UUKMJfPk,80
|
|
123
|
-
bluer_objects/tests/test_graphics.py,sha256=mEuk0rWLwr7b2nv4FH6f-RphwfqP23xe2pkjhWe0HgU,238
|
|
124
|
-
bluer_objects/tests/test_graphics_frame.py,sha256=wRW3MjnfS8edNHiWi_BFJBULoLs1JlJhpFeuCoW5I6A,267
|
|
125
|
-
bluer_objects/tests/test_graphics_gif.py,sha256=5vIRJiu1XZ7sjQ2R1VpdiqZszPx4DoZnTCd9UvFjJPY,590
|
|
126
|
-
bluer_objects/tests/test_graphics_screen.py,sha256=26GMDxImz57oWb8mFrNBtiGnctfjO0oNpzi1GLaHEro,138
|
|
127
|
-
bluer_objects/tests/test_graphics_signature.py,sha256=CVV257E3A5KBwqEDpRXShN-ful1zFwV9S-z-06oFkxM,1588
|
|
128
|
-
bluer_objects/tests/test_graphics_text.py,sha256=_jLZVuAcQQYlKpATeQCBpPMa8UhKQ__bFYR1bedO5EE,314
|
|
129
|
-
bluer_objects/tests/test_logger.py,sha256=DdkZqj8YOErKf6T-SWEPtU21LGfQf_O3GKrCn3H0Ujs,88
|
|
130
|
-
bluer_objects/tests/test_logger_matrix.py,sha256=krJPUdlQTLD8P8EjkrlmJVw6Iylwbl8cBfj8yv8egWg,1664
|
|
131
|
-
bluer_objects/tests/test_markdown.py,sha256=KtCWKIDs4U1M3qAGFMYhzVpdGiDV2VU8z7dCaU3s3Ec,217
|
|
132
|
-
bluer_objects/tests/test_metadata.py,sha256=jT39xsP4u3dq6ZWmmVwHlk0D_33Uv_-McNBdy_ba2DM,4264
|
|
133
|
-
bluer_objects/tests/test_mlflow.py,sha256=B7CvITThv6YmDB1la9_H2sF2VLt8urpNDQ0YnC1n8HU,1381
|
|
134
|
-
bluer_objects/tests/test_objects.py,sha256=4yv8QL2s6pw2nIOMPEaCn1p_HxUfRb84j_L0Kl0gHIs,1439
|
|
135
|
-
bluer_objects/tests/test_path.py,sha256=JjONWyhZyMM_u1SzD1RI_iZ5vYJDUe-B51fbbHczIig,85
|
|
136
|
-
bluer_objects/tests/test_storage.py,sha256=2tJ6Hev9ShId9Qn-0FXDw41HWjcl3wymcB_Bv1FJWi4,1127
|
|
137
|
-
bluer_objects/tests/test_testing.py,sha256=d2NH435yqJBl9wmfMqGGd-f0Y0jsL2QhHUXkty9AwPA,235
|
|
138
|
-
bluer_objects/tests/test_version.py,sha256=Lyf3PMcA22e17BNRk_2VgPrtao6dWEgVoXo68Uds8SE,75
|
|
139
|
-
bluer_objects-6.104.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
140
|
-
bluer_objects-6.104.1.dist-info/METADATA,sha256=4xylA8Cr5HsB8NYiXlsUqd4u6w1L9drznMb-ESYHLBo,3554
|
|
141
|
-
bluer_objects-6.104.1.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
|
142
|
-
bluer_objects-6.104.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
|
|
143
|
-
bluer_objects-6.104.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|