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

@@ -17,6 +17,7 @@ from bluer_objects.README.utils import (
17
17
  process_include,
18
18
  process_mermaid,
19
19
  process_objects,
20
+ process_title,
20
21
  process_variable,
21
22
  signature,
22
23
  variables,
@@ -156,6 +157,13 @@ def build(
156
157
  )
157
158
  continue
158
159
 
160
+ if template_line.startswith("title:::"):
161
+ content += process_title(
162
+ template_line,
163
+ filename,
164
+ )
165
+ continue
166
+
159
167
  if "help:::" in template_line:
160
168
  if help_function is None:
161
169
  logger.warning("help_function not found.")
@@ -1,4 +1,5 @@
1
- from typing import List, Tuple, Dict, Union, Callable
1
+ import os
2
+ from typing import List, Dict, Union, Callable
2
3
 
3
4
  from bluer_options.env import get_env
4
5
  from bluer_objects import file
@@ -198,6 +199,33 @@ def process_objects(template_line: str) -> str:
198
199
  return template_line
199
200
 
200
201
 
202
+ def process_title(
203
+ template_line: str,
204
+ filename: str,
205
+ ) -> List[str]:
206
+ template_line_pieces = [
207
+ piece for piece in template_line.strip().split(":::") if piece
208
+ ]
209
+ reference = template_line_pieces[1] if len(template_line_pieces) >= 2 else "docs"
210
+
211
+ filename_path_pieces = file.path(filename).split(os.sep)
212
+ if reference not in filename_path_pieces:
213
+ logger.warning(
214
+ "reference: {} not found in {}.".format(
215
+ reference,
216
+ template_line,
217
+ )
218
+ )
219
+ return ["# title: not found"]
220
+
221
+ title_pieces = filename_path_pieces[filename_path_pieces.index(reference) + 1 :]
222
+ filename_name = file.name(filename)
223
+ if filename_name != "README":
224
+ title_pieces.append(filename_name)
225
+
226
+ return ["# {}".format(": ".join(title_pieces))]
227
+
228
+
201
229
  def process_variable(template_line: str):
202
230
  key, value = template_line.split("set:::", 1)[1].split(" ", 1)
203
231
  variables[key] = value
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.233.1"
7
+ VERSION = "6.238.1"
8
8
 
9
9
  REPO_NAME = "bluer-objects"
10
10
 
@@ -6,7 +6,7 @@ import os
6
6
 
7
7
  from bluer_options import string
8
8
 
9
- from bluer_objects import file, objects
9
+ from bluer_objects import file, objects, path
10
10
  from bluer_objects.graphics.signature import sign_filename
11
11
 
12
12
  LOG_IMAGE_GRID_COLS = 5
@@ -97,7 +97,10 @@ def log_image_grid(
97
97
  filename,
98
98
  [
99
99
  " | ".join(
100
- objects.signature(file.name_and_extension(filename))
100
+ objects.signature(
101
+ info=file.name_and_extension(filename),
102
+ object_name=path.name(file.path(filename)),
103
+ )
101
104
  + [image_shape]
102
105
  + header
103
106
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bluer_objects
3
- Version: 6.233.1
3
+ Version: 6.238.1
4
4
  Summary: 🌀 Object management in Bash.
5
5
  Home-page: https://github.com/kamangir/bluer-objects
6
6
  Author: Arash Abadpour (Kamangir)
@@ -64,6 +64,6 @@ pip install bluer-objects
64
64
 
65
65
  [![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)
66
66
 
67
- built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_objects-6.233.1`](https://github.com/kamangir/bluer-objects).
67
+ built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_objects-6.238.1`](https://github.com/kamangir/bluer-objects).
68
68
 
69
69
  built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
@@ -1,4 +1,4 @@
1
- bluer_objects/__init__.py,sha256=ypm6tg6ZIhdQ-Qbd_QXj6Ypv7QPpEcN8C9bCQb_DeOc,315
1
+ bluer_objects/__init__.py,sha256=zySDgQgSGkUNDZxMrX2hcYi9nzeo0V6Uxfb-9suEvok,315
2
2
  bluer_objects/__main__.py,sha256=Yqfov833_hJuRne19WrGhT5DWAPtdffpoMxeSXS7EGw,359
3
3
  bluer_objects/config.env,sha256=RjcpnbKfRqNyGLRB4z7M_OG9z2pOM032ck__53JqXqo,216
4
4
  bluer_objects/env.py,sha256=iw4QvaImqnavlsHwfkUScNHc7afDEJQKJSsHTtVJE78,2019
@@ -72,9 +72,9 @@ bluer_objects/.abcli/tests/web_where_am_ai.sh,sha256=BJ9G_m4id8cx_UB_l_jV2xY6AfQ
72
72
  bluer_objects/.abcli/web/is_accessible.sh,sha256=Luv_6IvpscRYx7f39V0RnkkNEWTRfVGyQVUeij3iqa0,262
73
73
  bluer_objects/.abcli/web/where_am_i.sh,sha256=QPBXFo6Ni4pZEoOx0rtuJUxk6tOlp0ESMyAc9YPy9zg,92
74
74
  bluer_objects/README/__init__.py,sha256=JwxdTVAK3LeUaw7rMJujOFIXZA59HaLCtxpsR1C-vpo,1311
75
- bluer_objects/README/functions.py,sha256=JPr7kkBTwC8xbZptxDSUeey8PoHYCfssu3wuaff_S2k,5390
75
+ bluer_objects/README/functions.py,sha256=4GUp3gRlfvAyOiaVxbdy7RF8i-Jwz2LjTEYe7jf-lxI,5589
76
76
  bluer_objects/README/items.py,sha256=rTiOVd9fCoKUbFofBWjRV6oNDaH3XXdpL0XIPZqpy_w,951
77
- bluer_objects/README/utils.py,sha256=oZysOe-184SXz0yX_C8M_roTJ4wC8VRdyLpAezM0qb4,7139
77
+ bluer_objects/README/utils.py,sha256=HYH7P5quJpZcT8HRSUe1lub9mmwSIyQwbeGm2IX_SOQ,7975
78
78
  bluer_objects/file/__init__.py,sha256=c_79ipBkKl6OFDimOev0vnaVdpUk-Bl3oJUapOreMXc,681
79
79
  bluer_objects/file/__main__.py,sha256=v2IXWvZeh_B2sGYWzv1CiUY-7HWHXXghZM5M4IPjbu4,1277
80
80
  bluer_objects/file/classes.py,sha256=TRgeRP2yxInPkBnywhuB4BsoBcBRA3UmQzX1dI43UxU,872
@@ -108,7 +108,7 @@ bluer_objects/host/__init__.py,sha256=Ko43SWnZNsGKuIPU_l0w17pYrxCgVHQx3_zEoUNaHZ
108
108
  bluer_objects/host/__main__.py,sha256=J0MO2sUzrI_t_X4VVYyM6n41ND0yhhSXOmZSkDAC4rg,1751
109
109
  bluer_objects/host/functions.py,sha256=ADups78hYZDAnC6FlIICQ48WkFd4sPnRMWA0D6X-FV4,1663
110
110
  bluer_objects/logger/__init__.py,sha256=2aGNbx-qBXU3IlX9BDqtrFfN25lO_uarEg22cE3-3dU,102
111
- bluer_objects/logger/image.py,sha256=NUE8biNaW54yuIm9I3m3gmmq4I_J7vZ12y3Cl7FCxSA,2507
111
+ bluer_objects/logger/image.py,sha256=fwDILjYo8g8zWiqz1vMlvur8t1E9DXRxJE7lb_T-5l4,2621
112
112
  bluer_objects/logger/matrix.py,sha256=cPKQIhd347MH_9LaB-Ym7Mix1pqampG9MIgkeh08KA4,5757
113
113
  bluer_objects/metadata/__init__.py,sha256=B8cmMOMMO53mTwD2LJUFbSjvangSkpLqhR3oVIBsoBI,260
114
114
  bluer_objects/metadata/__main__.py,sha256=UAZBsf3AMUo-OHIgg4gS5_OowDOIO2T_zjismL3AfkI,2272
@@ -171,8 +171,8 @@ bluer_objects/tests/test_web_is_accessible.py,sha256=2Y20NAEDMblg0MKnhnqcfw3XVKE
171
171
  bluer_objects/web/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
172
172
  bluer_objects/web/__main__.py,sha256=xf2Ob54FI8JEokfGhFmiyOBdD9nBactwqmZvsKsdioU,624
173
173
  bluer_objects/web/functions.py,sha256=KNufAFOc6N3BYf83lN2rUpKUdsnzb2anWyp9koFRVUo,172
174
- bluer_objects-6.233.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
175
- bluer_objects-6.233.1.dist-info/METADATA,sha256=tsgJWXBuN_bvlxP08bMlvdtv31tDQgytbzzUhwjICW8,3678
176
- bluer_objects-6.233.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
177
- bluer_objects-6.233.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
178
- bluer_objects-6.233.1.dist-info/RECORD,,
174
+ bluer_objects-6.238.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
175
+ bluer_objects-6.238.1.dist-info/METADATA,sha256=c4f_mnFSjKG7LXtqUKKFL0moEk3wDyhzzpX_U2shsGU,3678
176
+ bluer_objects-6.238.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
177
+ bluer_objects-6.238.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
178
+ bluer_objects-6.238.1.dist-info/RECORD,,