kenenet 1.1.8__py3-none-any.whl → 1.2.0__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.
kenenet/__init__.py CHANGED
@@ -183,36 +183,47 @@ def pp(msg='caca', subdir=None, pps=3):
183
183
 
184
184
  def save_img(img, name=' ', reset=True, file='temp_screenshots', mute=False):
185
185
  global ospid
186
+ # Ensure target directory exists or is cleaned once
186
187
  if os.path.exists(file):
187
188
  if reset and ospid is None:
188
189
  zhmiscellany.fileio.empty_directory(file)
189
- if not mute: quick_print(f'Cleaned folder {file}')
190
+ quick_print(f'Cleaned folder {file}')
190
191
  else:
191
192
  quick_print(f'New folder created {file}')
192
- if not mute: zhmiscellany.fileio.create_folder(file)
193
+ zhmiscellany.fileio.create_folder(file)
193
194
  ospid = True
195
+
196
+ # Determine caller line number for logging
194
197
  frame = inspect.currentframe().f_back
195
198
  lineno = frame.f_lineno
199
+
196
200
  if isinstance(img, np.ndarray):
197
- # detect mask arrays: floating-point, single-channel
201
+ # Detect mask arrays: floating-point, single-channel
198
202
  is_mask = img.dtype.kind == 'f' and (img.ndim == 2 or (img.ndim == 3 and img.shape[-1] == 1))
199
- save_name = name + f'{time.time()}'
203
+
204
+ # Sanitize name to avoid invalid filename characters
205
+ raw_name = str(name).strip()
206
+ safe_name = re.sub(r'[^A-Za-z0-9_-]+', '_', raw_name)
207
+ timestamp = f'{time.time():.6f}' # more compact timestamp
208
+ save_name = f"{safe_name}_{timestamp}"
209
+
210
+ # Prepare image for saving
200
211
  if is_mask:
201
- # scale mask values [0.0,1.0] to [0,255] grayscale
202
- mask_uint8 = (img.squeeze() * 255).clip(0,255).astype(np.uint8)
212
+ # Scale mask values [0.0,1.0] to [0,255] grayscale
213
+ mask_uint8 = (img.squeeze() * 255).clip(0, 255).astype(np.uint8)
203
214
  img_to_save = Image.fromarray(mask_uint8)
204
215
  else:
205
216
  img_to_save = Image.fromarray(img)
206
- img_to_save.save(fr'{file}\{save_name}.png')
217
+
218
+ # Save to disk
219
+ filepath = os.path.join(file, f"{save_name}.png")
220
+ img_to_save.save(filepath)
221
+
207
222
  if not mute:
208
223
  quick_print(f'Saved image as {save_name}', lineno)
209
224
  else:
210
225
  quick_print(f"Your img is not a fucking numpy array you twat, couldn't save {name}", lineno)
211
226
 
212
-
213
-
214
-
215
-
216
227
  class _load_audio:
217
228
  def __init__(self):
218
229
  pygame.mixer.init()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kenenet
3
- Version: 1.1.8
3
+ Version: 1.2.0
4
4
  Summary: dude what the fuck even is this package
5
5
  Home-page: https://www.youtube.com/@KiddyKene
6
6
  Author: kiddykene
@@ -0,0 +1,5 @@
1
+ kenenet/__init__.py,sha256=oy4f42bfvN-UX-T7r9zViybxIHsGXhGvcTIPqdnTFMo,22026
2
+ kenenet-1.2.0.dist-info/METADATA,sha256=CqZ5DO_3bxTDMSbtLuBv_11h_Bk_c_X3SZGp6kO0wk8,1693
3
+ kenenet-1.2.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
4
+ kenenet-1.2.0.dist-info/top_level.txt,sha256=gUsWXLrM0jF4b4nbYJZdksdFewIx_F3xOF-zER8fMuQ,8
5
+ kenenet-1.2.0.dist-info/RECORD,,
@@ -1,5 +0,0 @@
1
- kenenet/__init__.py,sha256=wuv2RfvLgHl7TacGdyUVDpfzIhKdNKKfGBU1dUXrKqI,21607
2
- kenenet-1.1.8.dist-info/METADATA,sha256=1bYhd3iloCZLoOxHEq2f3RbT--rJPcN-fTcWMUrpNKk,1693
3
- kenenet-1.1.8.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
4
- kenenet-1.1.8.dist-info/top_level.txt,sha256=gUsWXLrM0jF4b4nbYJZdksdFewIx_F3xOF-zER8fMuQ,8
5
- kenenet-1.1.8.dist-info/RECORD,,