bluer-objects 6.83.1__py3-none-any.whl → 6.94.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.

@@ -27,6 +27,10 @@ alias @mysql=abcli_mysql
27
27
 
28
28
  alias @objects=bluer_objects
29
29
 
30
+ alias @random=bluer_ai_string_random
31
+
30
32
  alias @select=bluer_ai_select
31
33
 
34
+ alias @storage=bluer_ai_storage
35
+
32
36
  alias @upload=bluer_objects_upload
@@ -2,10 +2,12 @@ import os
2
2
 
3
3
  from blueness import module
4
4
 
5
+ from bluer_options.help.functions import get_help
5
6
  from bluer_objects import NAME as MY_NAME
6
7
  from bluer_objects import file
7
8
  from bluer_objects.README.functions import build
8
9
  from bluer_objects.README.items import Items
10
+ from bluer_objects.help.functions import help_functions
9
11
  from bluer_objects.logger import logger
10
12
 
11
13
  MY_NAME = module.name(__file__, MY_NAME)
@@ -16,14 +18,28 @@ def build_me() -> bool:
16
18
 
17
19
  return all(
18
20
  build(
19
- path=os.path.join(file.path(__file__), readme["path"]),
21
+ path=os.path.join(file.path(__file__), path),
20
22
  ICON=ICON,
21
23
  NAME=NAME,
22
24
  VERSION=VERSION,
23
25
  REPO_NAME=REPO_NAME,
26
+ help_function=lambda tokens: get_help(
27
+ tokens,
28
+ help_functions,
29
+ mono=True,
30
+ ),
24
31
  )
25
- for readme in [
26
- {"path": "../.."},
27
- {"path": "."},
32
+ for path in [
33
+ "../..",
34
+ ".",
35
+ # aliases
36
+ "../docs/aliases/clone.md",
37
+ "../docs/aliases/download.md",
38
+ "../docs/aliases/gif.md",
39
+ "../docs/aliases/host.md",
40
+ "../docs/aliases/ls.md",
41
+ "../docs/aliases/metadata.md",
42
+ "../docs/aliases/mlflow.md",
43
+ "../docs/aliases/upload.md",
28
44
  ]
29
45
  )
bluer_objects/__init__.py CHANGED
@@ -4,7 +4,7 @@ ICON = "🌀"
4
4
 
5
5
  DESCRIPTION = f"{ICON} Object management in Bash."
6
6
 
7
- VERSION = "6.83.1"
7
+ VERSION = "6.94.1"
8
8
 
9
9
  REPO_NAME = "bluer-objects"
10
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bluer_objects
3
- Version: 6.83.1
3
+ Version: 6.94.1
4
4
  Summary: 🌀 Object management in Bash.
5
5
  Home-page: https://github.com/kamangir/bluer-objects
6
6
  Author: Arash Abadpour (Kamangir)
@@ -33,15 +33,26 @@ Dynamic: summary
33
33
 
34
34
  # 🌀 bluer-objects
35
35
 
36
- 🌀 `bluer-objects` are the inputs and outputs of [AI algo](https://github.com/kamangir/giza). They are maintained in cloud storage (supports [WebDav](https://pypi.org/project/webdavclient3/)) and their metadata is tracked by [MLflow](https://mlflow.org/).
36
+ 🌀 `bluer-objects` are the inputs and outputs of [AI algo](https://github.com/kamangir/giza). They are maintained in cloud storage (supports [WebDav](https://pypi.org/project/webdavclient3/)) and their metadata is tracked by [MLflow](https://mlflow.org/). Examples are the Sentinel-2 [datacube](https://github.com/kamangir/blue-geo/tree/main/blue_geo/datacube) `datacube-EarthSearch-sentinel_2_l1c-S2A_10UDC_20240731_0_L1C` and 🌐 [`@geo watch` outputs](https://github.com/kamangir/blue-geo/tree/main/blue_geo/watch).
37
37
 
38
- For example, the Sentinel-2 [datacube](https://github.com/kamangir/blue-geo/tree/main/blue_geo/datacube) `datacube-EarthSearch-sentinel_2_l1c-S2A_10UDC_20240731_0_L1C` and 🌐 [`@geo watch` outputs](https://github.com/kamangir/blue-geo/tree/main/blue_geo/watch) are `bluer-objects`.
38
+ Also home to 🌀 [bluer README](https://github.com/kamangir/bluer-objects/blob/main/bluer_objects/README/).
39
+
40
+ # installation
39
41
 
40
42
  ```bash
41
43
  pip install bluer-objects
42
44
  ```
43
45
 
44
- Also home to 🌀 [bluer README](https://github.com/kamangir/bluer-objects/blob/main/bluer_objects/README/).
46
+ # aliases
47
+
48
+ [@clone](https://github.com/kamangir/bluer-objects/blob/main/bluer_objects/docs/aliases/clone.md),
49
+ [@download](https://github.com/kamangir/bluer-objects/blob/main/bluer_objects/docs/aliases/download.md),
50
+ [@gif](https://github.com/kamangir/bluer-objects/blob/main/bluer_objects/docs/aliases/gif.md),
51
+ [@host](https://github.com/kamangir/bluer-objects/blob/main/bluer_objects/docs/aliases/host.md),
52
+ [@ls](https://github.com/kamangir/bluer-objects/blob/main/bluer_objects/docs/aliases/ls.md),
53
+ [@metadata](https://github.com/kamangir/bluer-objects/blob/main/bluer_objects/docs/aliases/metadata.md),
54
+ [@mlflow](https://github.com/kamangir/bluer-objects/blob/main/bluer_objects/docs/aliases/mlflow.md),
55
+ [@upload](https://github.com/kamangir/bluer-objects/blob/main/bluer_objects/docs/aliases/upload.md).
45
56
 
46
57
  ---
47
58
 
@@ -52,6 +63,6 @@ Also home to 🌀 [bluer README](https://github.com/kamangir/bluer-objects/blob/
52
63
 
53
64
  [![pylint](https://github.com/kamangir/bluer-objects/actions/workflows/pylint.yml/badge.svg)](https://github.com/kamangir/bluer-objects/actions/workflows/pylint.yml) [![pytest](https://github.com/kamangir/bluer-objects/actions/workflows/pytest.yml/badge.svg)](https://github.com/kamangir/bluer-objects/actions/workflows/pytest.yml) [![bashtest](https://github.com/kamangir/bluer-objects/actions/workflows/bashtest.yml/badge.svg)](https://github.com/kamangir/bluer-objects/actions/workflows/bashtest.yml) [![PyPI version](https://img.shields.io/pypi/v/bluer-objects.svg)](https://pypi.org/project/bluer-objects/) [![PyPI - Downloads](https://img.shields.io/pypi/dd/bluer-objects)](https://pypistats.org/packages/bluer-objects)
54
65
 
55
- built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_objects-6.83.1`](https://github.com/kamangir/bluer-objects).
66
+ built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_objects-6.94.1`](https://github.com/kamangir/bluer-objects).
56
67
 
57
68
  built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
@@ -1,4 +1,4 @@
1
- bluer_objects/__init__.py,sha256=I9a6tu5rwHgTouWl9Qejlsrac7YqkL8tKuUz9fMX7kk,314
1
+ bluer_objects/__init__.py,sha256=wC3IYXYCAzOJ6yedhrS8s_AZXroMV6-7vWb2NB_ZWOw,314
2
2
  bluer_objects/__main__.py,sha256=Yqfov833_hJuRne19WrGhT5DWAPtdffpoMxeSXS7EGw,359
3
3
  bluer_objects/config.env,sha256=cMVT0kVQ00xGUoQyUqC8jpqkhR13Kpkl1-0sKQlxQAI,85
4
4
  bluer_objects/env.py,sha256=J5LklWyWT-Yvvoe8MVCZQ3iqRqyDutq6IbNYNj9A1VM,1183
@@ -10,7 +10,7 @@ bluer_objects/urls.py,sha256=paHaYlLMQOI46-EYNch5ohu9Q09BMkF2vvJy1QufrVI,19
10
10
  bluer_objects/.abcli/abcli.sh,sha256=8RDi_vCZfB6JOeGSJWcmmzZv2pS4o-_j250rFYG7Ljc,202
11
11
  bluer_objects/.abcli/actions.sh,sha256=HZI-X5KUy6bXEHmxywfBN1zbHalU0mcTblTQ2HvIfOE,236
12
12
  bluer_objects/.abcli/aka.sh,sha256=odRbw4KZb9Ld7uXny6H2pPi64_5kowKX3s68N6YvRmI,23
13
- bluer_objects/.abcli/alias.sh,sha256=CO4-rI5PvB0c2EhuQQtB5Xl0EgNJRNgihSwtvPJ_M1Q,590
13
+ bluer_objects/.abcli/alias.sh,sha256=mOLTambl1NitzjO39KgXy0sjI4kZUCGTRi0y7iAcFa4,661
14
14
  bluer_objects/.abcli/bluer_objects.sh,sha256=x7qf8hSAp3dAl0Hes4J07vL6qP-mWFUkJhvUXzTJC_8,210
15
15
  bluer_objects/.abcli/clone.sh,sha256=KqC5d4MAXwo7UZGhKnfCq9k9CCSl3I1dpU1igYs0Yrs,1975
16
16
  bluer_objects/.abcli/download.sh,sha256=77Bak3TATDrDNpBWM8bvbU1MdsuTCENyqdBJNx_Wsa0,564
@@ -59,7 +59,7 @@ bluer_objects/.abcli/tests/mlflow_tags.sh,sha256=pX4sEK_z2Vrb7a6Bq4qWurFVPZkvjpS
59
59
  bluer_objects/.abcli/tests/mlflow_test.sh,sha256=7MXxYq2GgD2MEJbQlpx80qLT2HaaVn_PFFMpSA_hWA4,125
60
60
  bluer_objects/.abcli/tests/storage.sh,sha256=HOpVnA-pQEWC4mSdTpE31BM7FxJlE9kZdvEL57VfA7c,1199
61
61
  bluer_objects/.abcli/tests/version.sh,sha256=k-lXozSjyFgFR58cTzUYla0Ef-upx3sSK641zI5ynfE,169
62
- bluer_objects/README/__init__.py,sha256=BmSX0KzYCTAc2_wwi8QWGSt7PYKNK46IYD0VPr_xJMk,692
62
+ bluer_objects/README/__init__.py,sha256=5ghygLdrsjqP2Tui5O3Ax9DR8nEHHh1HydKV05dhRhc,1259
63
63
  bluer_objects/README/functions.py,sha256=NR1cdBqmmgQWkWQdRMPT9RmvlpzeXUEzbBOvT4c1mX0,10806
64
64
  bluer_objects/README/items.py,sha256=-XaNCr5b_NGRkZVfIQ6hBFgJw5GIVcMJdktT3hWoam4,755
65
65
  bluer_objects/file/__init__.py,sha256=c_79ipBkKl6OFDimOev0vnaVdpUk-Bl3oJUapOreMXc,681
@@ -136,8 +136,8 @@ bluer_objects/tests/test_path.py,sha256=JjONWyhZyMM_u1SzD1RI_iZ5vYJDUe-B51fbbHcz
136
136
  bluer_objects/tests/test_storage.py,sha256=2tJ6Hev9ShId9Qn-0FXDw41HWjcl3wymcB_Bv1FJWi4,1127
137
137
  bluer_objects/tests/test_testing.py,sha256=d2NH435yqJBl9wmfMqGGd-f0Y0jsL2QhHUXkty9AwPA,235
138
138
  bluer_objects/tests/test_version.py,sha256=Lyf3PMcA22e17BNRk_2VgPrtao6dWEgVoXo68Uds8SE,75
139
- bluer_objects-6.83.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
140
- bluer_objects-6.83.1.dist-info/METADATA,sha256=xh0TuG-E6hC7nBGQIXoG0LrTfTd8e22uPQvmWbPz_wQ,2742
141
- bluer_objects-6.83.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
142
- bluer_objects-6.83.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
143
- bluer_objects-6.83.1.dist-info/RECORD,,
139
+ bluer_objects-6.94.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
140
+ bluer_objects-6.94.1.dist-info/METADATA,sha256=vSIczppPZcOYeJ38VrD8NMdpcu2yKrpFxB0LCq_rkIE,3552
141
+ bluer_objects-6.94.1.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
142
+ bluer_objects-6.94.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
143
+ bluer_objects-6.94.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (78.1.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5