not1mm 25.1.23.1__py3-none-any.whl → 25.1.25__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.
@@ -342,7 +342,7 @@ class CAT:
342
342
  self.rigctrlsocket.send(b"|m\n")
343
343
  # get_mode:|Mode: CW|Passband: 500|RPRT 0
344
344
  report = self.__get_serial_string().strip()
345
- if "getmode:|" in report and "RPRT 0" in report:
345
+ if "get_mode:|" in report and "RPRT 0" in report:
346
346
  seg_rpt = report.split("|")
347
347
  return seg_rpt[1].split(" ")[1]
348
348
  except IndexError as exception:
@@ -391,7 +391,7 @@ class CAT:
391
391
  self.rigctrlsocket.send(b"|m\n")
392
392
  # get_mode:|Mode: CW|Passband: 500|RPRT 0
393
393
  report = self.__get_serial_string().strip()
394
- if "getmode:|" in report and "RPRT 0" in report:
394
+ if "get_mode:|" in report and "RPRT 0" in report:
395
395
  seg_rpt = report.split("|")
396
396
  return seg_rpt[2].split(" ")[1]
397
397
 
not1mm/lib/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "25.1.23.1"
3
+ __version__ = "25.1.25"
@@ -402,8 +402,8 @@ def trigger_update(self):
402
402
  """Triggers the log window to update."""
403
403
  cmd = {}
404
404
  cmd["cmd"] = "UPDATELOG"
405
- cmd["station"] = platform.node()
406
- self.multicast_interface.send_as_json(cmd)
405
+ if self.log_window:
406
+ self.log_window.msg_from_main(cmd)
407
407
 
408
408
 
409
409
  def recalculate_mults(self):
@@ -402,8 +402,8 @@ def trigger_update(self):
402
402
  """Triggers the log window to update."""
403
403
  cmd = {}
404
404
  cmd["cmd"] = "UPDATELOG"
405
- cmd["station"] = platform.node()
406
- self.multicast_interface.send_as_json(cmd)
405
+ if self.log_window:
406
+ self.log_window.msg_from_main(cmd)
407
407
 
408
408
 
409
409
  def recalculate_mults(self):
@@ -307,8 +307,8 @@ def recalculate_mults(self):
307
307
  self.database.change_contact(contact)
308
308
  cmd = {}
309
309
  cmd["cmd"] = "UPDATELOG"
310
- cmd["station"] = platform.node()
311
- self.multicast_interface.send_as_json(cmd)
310
+ if self.log_window:
311
+ self.log_window.msg_from_main(cmd)
312
312
 
313
313
 
314
314
  def adif(self):
@@ -387,8 +387,8 @@ def recalculate_mults(self):
387
387
  self.database.change_contact(contact)
388
388
  cmd = {}
389
389
  cmd["cmd"] = "UPDATELOG"
390
- cmd["station"] = platform.node()
391
- self.multicast_interface.send_as_json(cmd)
390
+ if self.log_window:
391
+ self.log_window.msg_from_main(cmd)
392
392
 
393
393
 
394
394
  def process_esm(self, new_focused_widget=None, with_enter=False):
not1mm/plugins/lz-dx.py CHANGED
@@ -521,8 +521,8 @@ def recalculate_mults(self):
521
521
  self.database.change_contact(contact)
522
522
  cmd = {}
523
523
  cmd["cmd"] = "UPDATELOG"
524
- cmd["station"] = platform.node()
525
- # self.multicast_interface.send_as_json(cmd)
524
+ if self.log_window:
525
+ self.log_window.msg_from_main(cmd)
526
526
 
527
527
 
528
528
  def populate_history_info_line(self):
not1mm/plugins/naqp_cw.py CHANGED
@@ -413,8 +413,8 @@ def recalculate_mults(self):
413
413
  self.database.change_contact(contact)
414
414
  cmd = {}
415
415
  cmd["cmd"] = "UPDATELOG"
416
- cmd["station"] = platform.node()
417
- self.multicast_interface.send_as_json(cmd)
416
+ if self.log_window:
417
+ self.log_window.msg_from_main(cmd)
418
418
 
419
419
 
420
420
  def process_esm(self, new_focused_widget=None, with_enter=False):
@@ -432,8 +432,8 @@ def recalculate_mults(self):
432
432
  self.database.change_contact(contact)
433
433
  cmd = {}
434
434
  cmd["cmd"] = "UPDATELOG"
435
- cmd["station"] = platform.node()
436
- self.multicast_interface.send_as_json(cmd)
435
+ if self.log_window:
436
+ self.log_window.msg_from_main(cmd)
437
437
 
438
438
 
439
439
  def set_self(the_outie):
@@ -383,8 +383,8 @@ def recalculate_mults(self):
383
383
  self.database.change_contact(contact)
384
384
  cmd = {}
385
385
  cmd["cmd"] = "UPDATELOG"
386
- cmd["station"] = platform.node()
387
- self.multicast_interface.send_as_json(cmd)
386
+ if self.log_window:
387
+ self.log_window.msg_from_main(cmd)
388
388
 
389
389
 
390
390
  def process_esm(self, new_focused_widget=None, with_enter=False):
@@ -403,8 +403,8 @@ def recalculate_mults(self):
403
403
  self.database.change_contact(contact)
404
404
  cmd = {}
405
405
  cmd["cmd"] = "UPDATELOG"
406
- cmd["station"] = platform.node()
407
- self.multicast_interface.send_as_json(cmd)
406
+ if self.log_window:
407
+ self.log_window.msg_from_main(cmd)
408
408
 
409
409
 
410
410
  def process_esm(self, new_focused_widget=None, with_enter=False):
not1mm/plugins/ref_cw.py CHANGED
@@ -312,8 +312,8 @@ def recalculate_mults(self):
312
312
  self.database.change_contact(contact)
313
313
  cmd = {}
314
314
  cmd["cmd"] = "UPDATELOG"
315
- cmd["station"] = platform.node()
316
- self.multicast_interface.send_as_json(cmd)
315
+ if self.log_window:
316
+ self.log_window.msg_from_main(cmd)
317
317
 
318
318
 
319
319
  def adif(self):
not1mm/plugins/ref_ssb.py CHANGED
@@ -327,8 +327,8 @@ def recalculate_mults(self):
327
327
  self.database.change_contact(contact)
328
328
  cmd = {}
329
329
  cmd["cmd"] = "UPDATELOG"
330
- cmd["station"] = platform.node()
331
- self.multicast_interface.send_as_json(cmd)
330
+ if self.log_window:
331
+ self.log_window.msg_from_main(cmd)
332
332
 
333
333
 
334
334
  def adif(self):
@@ -397,8 +397,8 @@ def recalculate_mults(self):
397
397
  self.database.change_contact(contact)
398
398
  cmd = {}
399
399
  cmd["cmd"] = "UPDATELOG"
400
- cmd["station"] = platform.node()
401
- self.multicast_interface.send_as_json(cmd)
400
+ if self.log_window:
401
+ self.log_window.msg_from_main(cmd)
402
402
 
403
403
 
404
404
  def set_self(the_outie):
not1mm/radio.py CHANGED
@@ -35,7 +35,7 @@ class Radio(QObject):
35
35
  host = None
36
36
  port = None
37
37
  modes = ""
38
- cw_list = ["CW", "CW-L", "CW-U", "CWR"]
38
+ cw_list = ["CW", "CW-L", "CW-U", "CWR", "CW-R"]
39
39
  rtty_list = [
40
40
  "RTTY",
41
41
  "DIGI-L",
not1mm/ratewindow.py CHANGED
@@ -10,13 +10,12 @@ Purpose: not sure yet
10
10
  # pylint: disable=logging-fstring-interpolation, line-too-long
11
11
 
12
12
  import datetime
13
- import time
14
13
  import logging
15
14
  import os
16
15
 
17
16
  from PyQt6 import uic
18
- from PyQt6.QtWidgets import QLabel, QWidget, QDockWidget
19
- from PyQt6.QtGui import QMouseEvent, QColorConstants, QPalette, QColor
17
+ from PyQt6.QtWidgets import QDockWidget
18
+ from PyQt6.QtGui import QColorConstants, QPalette, QColor
20
19
  from PyQt6.QtCore import pyqtSignal, QTimer
21
20
 
22
21
  import not1mm.fsutils as fsutils
@@ -24,7 +23,6 @@ from not1mm.lib.database import DataBase
24
23
 
25
24
  from json import loads
26
25
  from json.decoder import JSONDecodeError
27
- from pathlib import Path
28
26
 
29
27
  logger = logging.getLogger(__name__)
30
28
 
@@ -217,9 +215,9 @@ class RateWindow(QDockWidget):
217
215
  result = self.database.exec_sql(query)
218
216
  try:
219
217
  sandp = result.get("totalqs", 0) - result.get("runs", 0)
220
- self.run_qso.setText(f"{result.get("runs", 0)}")
218
+ self.run_qso.setText(f"{result.get('runs', 0)}")
221
219
  self.sandp_qso.setText(f"{sandp}")
222
- self.qso_counts.setText(f"{result.get("totalqs", 0)} pts")
220
+ self.qso_counts.setText(f"{result.get('totalqs', 0)} pts")
223
221
  except TypeError:
224
222
  ...
225
223
 
@@ -228,7 +226,7 @@ class RateWindow(QDockWidget):
228
226
  result = self.database.exec_sql(query)
229
227
  try:
230
228
  sandp = result.get("totalqs", 0) - result.get("runs", 0)
231
- self.hour_run_qso.setText(f"{result.get("runs", 0)}")
229
+ self.hour_run_qso.setText(f"{result.get('runs', 0)}")
232
230
  self.hour_sandp_qso.setText(f"{sandp}")
233
231
  except TypeError:
234
232
  ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: not1mm
3
- Version: 25.1.23.1
3
+ Version: 25.1.25
4
4
  Summary: NOT1MM Logger
5
5
  Author-email: Michael Bridak <michael.bridak@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/mbridak/not1mm
@@ -235,6 +235,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
235
235
 
236
236
  ## Recent Changes (Polishing the Turd)
237
237
 
238
+ - [25-1-25] Fix app not following radio mode. Fix crash on recalc mults.
239
+ - [25-1-24] Fix mismatched quotes causing crash.
238
240
  - [25-1-23] Added a basic rate window. Changed DB to WAL mode.
239
241
  - [25-1-15] Fix bug in ADIF output where mode showed as CW-R and not CW.
240
242
  - [25-1-6] Altered RTTY RU UDP ADIF parse.
@@ -274,8 +276,6 @@ noted the minimum steps needed to install Not1MM.
274
276
  #### Ubuntu 22.04 LTS
275
277
 
276
278
  ```bash
277
- sudo apt update
278
- sudo apt upgrade
279
279
  sudo apt install -y python3-pip python3-numpy libxcb-cursor0 libportaudio2
280
280
  python3 -m pip install -U pip
281
281
  # Logout and back in
@@ -286,8 +286,6 @@ pip3 install not1mm
286
286
  #### Ubuntu 23.04
287
287
 
288
288
  ```bash
289
- sudo apt update
290
- sudo apt upgrade
291
289
  sudo apt install -y libportaudio2 pipx libxcb-cursor0
292
290
  pipx install not1mm
293
291
  pipx ensurepath
@@ -296,11 +294,9 @@ pipx ensurepath
296
294
  #### Ubuntu 24.04 LTS
297
295
 
298
296
  ```bash
299
- sudo apt update
300
- sudo apt upgrade
301
- sudo apt install -y libportaudio2 pyqt6-dev-tools python3-pip
302
- pip install --break-system-packages not1mm
303
- source .profile
297
+ sudo apt install -y pipx libportaudio2 libxcb-cursor0
298
+ pipx install not1mm
299
+ pipx ensurepath
304
300
  ```
305
301
 
306
302
  </details>
@@ -5,8 +5,8 @@ not1mm/checkwindow.py,sha256=VFAcKYTcoWhmIf91chwY6tyao9FQMWPiUkgDDkkWaog,9670
5
5
  not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
6
6
  not1mm/logwindow.py,sha256=TvpzQTNB92hISlUO3iWBqtlPmlebdhOkAArx0DNGcOs,43966
7
7
  not1mm/lookupservice.py,sha256=GkY_qHZfrW6XHf8upIoaG4hCFqm0fg6Ganu9ConGrIc,2628
8
- not1mm/radio.py,sha256=c4m7Ci38uKGKxB0JUT5uOKalI_Mm8Vmixu5D_roN5z4,5400
9
- not1mm/ratewindow.py,sha256=oXiXQYAmyD0FLuDXfWWBoov-4zMaNRYZ4fi5Q5MciBs,9688
8
+ not1mm/radio.py,sha256=_b-tSFuDLoBKnABxrsafGQu2p33U-KOubY7-qgLV2yg,5408
9
+ not1mm/ratewindow.py,sha256=AtYBx7nIWbE-VlzTzJME2C8fReAFgTdXFH2cwvzqfbk,9621
10
10
  not1mm/rtc_service.py,sha256=axAwnCBuTr-QL0YwXtWvg9tjwhcFsiiEZFgFjOofX6k,2816
11
11
  not1mm/test.py,sha256=RN71m2S9MPIOJMaoCi0wZhwEhpEZunvtosZxaKahRB4,101
12
12
  not1mm/vfo.py,sha256=ggPyWtxMbdSE5RwdK0nDRwDNqOxdpb_pvnzZdbzZVQE,11136
@@ -98,7 +98,7 @@ not1mm/data/phonetics/yourcall.wav,sha256=4kheHJmCiRDL2kjhlgXQ8_u_eEMgKxiNGu5UBk
98
98
  not1mm/data/phonetics/z.wav,sha256=arafCi7fwmBLdVDI-PRyaL4U-03PIQDhffwY5noJ_2c,51768
99
99
  not1mm/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
100
  not1mm/lib/about.py,sha256=sWycfGcruN3SaEe4JmaJ61K6D8Itq0WxpUYT-lEcmYM,416
101
- not1mm/lib/cat_interface.py,sha256=weOH3Gds2ISEdZ2uZkHOv5tBZu-hoSwYKlrFUlg_KK4,25202
101
+ not1mm/lib/cat_interface.py,sha256=BJvy-34ZyiN73kKNQcCzE4w6ll2O6Ue0uz01T_3sf1E,25204
102
102
  not1mm/lib/cwinterface.py,sha256=yQL8Dif9oOIynaRItHgvcmu4mYv1TnTpqCHPtkeb09o,4472
103
103
  not1mm/lib/database.py,sha256=-9iAPTXDGVUc3OfnZNZCaWRxg3u-qdJyO5jvSvrJQSk,49203
104
104
  not1mm/lib/edit_contact.py,sha256=Ki9bGPpqyQQBB1cU8VIBDCal3lbXeQ6qxhzklmhE2_w,353
@@ -116,7 +116,7 @@ not1mm/lib/plugin_common.py,sha256=M5reDYM-v5IjAa2yTROvZTeTDkXYHb3U52W9mc9GxwA,1
116
116
  not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
117
117
  not1mm/lib/settings.py,sha256=j5lIMLHJ-eqIaVr_QhI82gkbOl17_C-5suRkWbHYET8,14717
118
118
  not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
119
- not1mm/lib/version.py,sha256=LOP-apVMVTVsAHn-2hjf7uqV4adhiz4AXKgExsF8QGw,50
119
+ not1mm/lib/version.py,sha256=E6ObVKkr2CzxCjcL9do4aooi7hdONzqxNEyh-kCzoPU,48
120
120
  not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
121
121
  not1mm/plugins/10_10_fall_cw.py,sha256=5QUyGMvGBC-HxcY_z9QbfuxSg3f7p6C9K4qhTxgZE7k,14719
122
122
  not1mm/plugins/10_10_spring_cw.py,sha256=XjYFM263WYyG6nVQzPObW4YC7Z9L93rixSOcVsxPvH4,14722
@@ -135,8 +135,8 @@ not1mm/plugins/arrl_vhf_jan.py,sha256=SDk0gGg00XPuCpl6DsyozAnEoOBgiS1wMUhDPPB5Rs
135
135
  not1mm/plugins/arrl_vhf_jun.py,sha256=q-g5IK29pXrT1Pn_cY4LeCO2sd8YaaE1Cn8KBG3Vwrk,19359
136
136
  not1mm/plugins/arrl_vhf_sep.py,sha256=yj-NaUVjMEYzt-1UN8f2xDDTwJS2foBzjnDr-cvTmcs,19392
137
137
  not1mm/plugins/canada_day.py,sha256=23xicRglQbuHu4Qx9BsMpbjKzmhLpKGL-TxwDCLCwZo,15706
138
- not1mm/plugins/cq_160_cw.py,sha256=Ks41--f-p46rpDeOlzJmLgg7Coj0nyVLuTNWFr7eVHw,18664
139
- not1mm/plugins/cq_160_ssb.py,sha256=NqPO9EJzuvjLcacvUn-NJUoeWBUL9lSHYZ-N3Vyfjxk,18707
138
+ not1mm/plugins/cq_160_cw.py,sha256=r8I1tpq5pFIIsI__m8cyhbTIEKvCNog5cXy7LlTE_Tw,18647
139
+ not1mm/plugins/cq_160_ssb.py,sha256=DlGJcrxRDNePsLxZkDAaz7nIlcaRsldoec8wQewG0pw,18690
140
140
  not1mm/plugins/cq_wpx_cw.py,sha256=7ZWO9iqNVKjCZXG_5bUEtpahTgRHLc7ebQhvsQTATh0,18185
141
141
  not1mm/plugins/cq_wpx_rtty.py,sha256=2QoZzGg01wMIPRLxVUmS-Pke0iJvakr_prBzPnekHpc,21004
142
142
  not1mm/plugins/cq_wpx_ssb.py,sha256=WeUQoXbGDxzg603Ai6vmtw-Lc9LVXwwreamqXu--unY,16752
@@ -146,28 +146,28 @@ not1mm/plugins/cq_ww_ssb.py,sha256=uRMXaTfkIt7QJxQBaBAvc2fmT6ak26SzBBezd5k_hMc,1
146
146
  not1mm/plugins/cwt.py,sha256=7BoKVrIywlHpP4f4_mrUyWKVsK6vujreb8jDWyXrwUc,17530
147
147
  not1mm/plugins/darc_xmas.py,sha256=p9JbOJlEoOsB86E5ciHdrY7L-10tnNEWuTxq9EfCNBM,18907
148
148
  not1mm/plugins/general_logging.py,sha256=gpZhoBr9fKpcTrefufmtvMHVrzlSqUsch64O8-oKhls,6915
149
- not1mm/plugins/helvetia.py,sha256=CnAq0mXZC2tO_pEwIoDN6MHAv95NPcLRvG1gnjfAcF8,20032
149
+ not1mm/plugins/helvetia.py,sha256=ANsktNEXppSrxiIXeCwRd3GtFu27UjAp3cbA5wwmL2E,20015
150
150
  not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=lueTnK50yRSMqASlktrhuFOJkSBDsQw4OyT9eYwpugU,17155
151
151
  not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=1lYxeo4j_piiFZ_db-vHIHT5c1jSeFPBuw6yf1kur6Y,17159
152
152
  not1mm/plugins/iaru_hf.py,sha256=kbiKqg7leyGnULe4BEk0gaZ4uvqR2ya9MOe_Er4mN8U,16658
153
153
  not1mm/plugins/icwc_mst.py,sha256=XfaIRIj0BxWvpWk2nmy_dMseVuKVOh-_m3UcIGOy6wI,16475
154
154
  not1mm/plugins/jidx_cw.py,sha256=gSScw21ac2Rpdd7jspgh5gnH9JdiR8h3YOa-41B_T94,15881
155
155
  not1mm/plugins/jidx_ph.py,sha256=0E5xHs0WXh-x2Z6UC2PGqmLdIkn-jWbENOeLopr7rys,14830
156
- not1mm/plugins/k1usn_sst.py,sha256=X9shd8_nLVLaoEonBDfgFfbaWDXcpz9pCmg6nNuQSi0,17151
157
- not1mm/plugins/lz-dx.py,sha256=w7YNerI1QAGkL_QffOosKvLcqjdWgEHhDd3ZInANcFU,19843
158
- not1mm/plugins/naqp_cw.py,sha256=7Q5m8cv1mdFilXn2NFU3Uqc4rSW3Di1r_1_jBceYoOA,18914
159
- not1mm/plugins/naqp_rtty.py,sha256=AzzMutcczXH7wTQVRLF7DxEo3HKq6IZWSFf3Lpy9UBM,22656
160
- not1mm/plugins/naqp_ssb.py,sha256=C8aAvICTTXyOuvp4fqlr0tQYtmCX-mNSwUZJs-N_pNE,17831
161
- not1mm/plugins/phone_weekly_test.py,sha256=xocHg61tZ5nL5n9zYzKS8ibrfwmQYa2nnEjWEgVvKdw,16325
156
+ not1mm/plugins/k1usn_sst.py,sha256=WfRF-emC52IIjOEddGmEQ_gWlMqoBbhCQ7S56nAZ4M8,17134
157
+ not1mm/plugins/lz-dx.py,sha256=HLU7FopHryEHPtAH2-mopeWSY6E_uwNgh8_sM27E2F0,19824
158
+ not1mm/plugins/naqp_cw.py,sha256=Aq9bRn9uRm6PXd1WVckZJ4GTbiBcPFnPRQAydEVmeAs,18897
159
+ not1mm/plugins/naqp_rtty.py,sha256=JbjsY9DvVexXdzoPE4k9zSmcYNEMQpB9lrxdRxl_ldc,22639
160
+ not1mm/plugins/naqp_ssb.py,sha256=4ZnlvCwvuX53dvqQdsdj6ipE8U7MZBPKPkMgxdDuzF8,17814
161
+ not1mm/plugins/phone_weekly_test.py,sha256=9Ue-n4VnZoFOc47ubaegT6ky0-38flMnm5VeieAk_UA,16308
162
162
  not1mm/plugins/raem.py,sha256=yF4WK-T8aPDxSI3pxVwYW-Q7eW9n5gvuaslEBoTYcsI,19562
163
- not1mm/plugins/ref_cw.py,sha256=sj69Jjtm1gA9juQTRVSe3BdcCqcQXMaJMD5D1kr5QOs,20728
164
- not1mm/plugins/ref_ssb.py,sha256=vfS9-mcnbw2znRvU4jh20JqI9BXap8jV65OV5mbCkCk,20939
163
+ not1mm/plugins/ref_cw.py,sha256=f7sehgS1O_W9ArqLgBRyTTFFs6N0MhXp08iLBFr1Tvk,20711
164
+ not1mm/plugins/ref_ssb.py,sha256=LaMvATfTZR9xyz6_SyPDANkRycLUl-8usXNIEJOPncE,20922
165
165
  not1mm/plugins/stew_perry_topband.py,sha256=D1hekmMbx-i4BhaP2uzOK3OzaVVMMdgcN3RmfweNqHo,15341
166
- not1mm/plugins/weekly_rtty.py,sha256=huZszbZsIh4vF3cP80UyPzy3qxIoHdEiT1b6KuvwgYc,20083
166
+ not1mm/plugins/weekly_rtty.py,sha256=rdlIrsxBeuj-RQc5OStVNF7sGCtBK5t6inN5Z7DI4tw,20066
167
167
  not1mm/plugins/winter_field_day.py,sha256=JK4r1vfxs7aADR7ZYbjZniz3f5s3_ipSQDZ0GRNWC7I,15222
168
- not1mm-25.1.23.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
169
- not1mm-25.1.23.1.dist-info/METADATA,sha256=s7iLA5G4q9IyoZSVx0zoV8GO9TCa_d7-p9WSAu0dP4k,35693
170
- not1mm-25.1.23.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
171
- not1mm-25.1.23.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
172
- not1mm-25.1.23.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
173
- not1mm-25.1.23.1.dist-info/RECORD,,
168
+ not1mm-25.1.25.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
169
+ not1mm-25.1.25.dist-info/METADATA,sha256=5XnePqRysZ_uS1WwFVRaNfNuKcA0nbAbZX_AlvuAtlk,35683
170
+ not1mm-25.1.25.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
171
+ not1mm-25.1.25.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
172
+ not1mm-25.1.25.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
173
+ not1mm-25.1.25.dist-info/RECORD,,